diff --git a/app/monitoring/dashboard.py b/app/monitoring/dashboard.py index dfe7902..162ff4d 100644 --- a/app/monitoring/dashboard.py +++ b/app/monitoring/dashboard.py @@ -1198,6 +1198,78 @@ HTML_TEMPLATE = """ } }); + // 세션 풀 사용량 차트 + const sessionCtx = document.getElementById('sessionChart').getContext('2d'); + const sessionChart = new Chart(sessionCtx, { + type: 'line', + data: { + labels: [], + datasets: [{ + label: 'Simple LAMA 사용중', + data: [], + borderColor: 'rgb(255, 99, 132)', + backgroundColor: 'rgba(255, 99, 132, 0.1)', + tension: 0.1 + }, { + label: 'MIGAN 사용중', + data: [], + borderColor: 'rgb(54, 162, 235)', + backgroundColor: 'rgba(54, 162, 235, 0.1)', + tension: 0.1 + }, { + label: 'RemBG 사용중', + data: [], + borderColor: 'rgb(75, 192, 192)', + backgroundColor: 'rgba(75, 192, 192, 0.1)', + tension: 0.1 + }] + }, + options: { + responsive: true, + scales: { + y: { + beginAtZero: true, + ticks: { + stepSize: 1 + } + } + } + } + }); + + // 워커 활성도 차트 + const workerCtx = document.getElementById('workerChart').getContext('2d'); + const workerChart = new Chart(workerCtx, { + type: 'line', + data: { + labels: [], + datasets: [{ + label: 'Idle 워커', + data: [], + borderColor: 'rgb(75, 192, 192)', + backgroundColor: 'rgba(75, 192, 192, 0.1)', + tension: 0.1 + }, { + label: 'Busy 워커', + data: [], + borderColor: 'rgb(255, 159, 64)', + backgroundColor: 'rgba(255, 159, 64, 0.1)', + tension: 0.1 + }] + }, + options: { + responsive: true, + scales: { + y: { + beginAtZero: true, + ticks: { + stepSize: 1 + } + } + } + } + }); + // WebSocket 연결 관리 let ws; let reconnectAttempts = 0; @@ -1398,6 +1470,27 @@ HTML_TEMPLATE = """ document.getElementById('server-uptime').textContent = `${hours}h ${minutes}m ${seconds}s`; } + // 일일 통계 업데이트 + if (data.daily_stats) { + const totalImages = data.daily_stats.images_processed?.total || 0; + document.getElementById('daily-images-total').textContent = totalImages.toLocaleString(); + + const breakdown = [ + `inpaint: ${data.daily_stats.images_processed?.inpaint || 0}`, + `remove_bg: ${data.daily_stats.images_processed?.remove_bg || 0}`, + `gen_image: ${data.daily_stats.images_processed?.gen_image || 0}` + ].join(', '); + document.getElementById('daily-images-breakdown').textContent = breakdown; + + const uploadGB = (data.daily_stats.network?.gb_uploaded || 0).toFixed(2); + document.getElementById('daily-upload-size').textContent = `${uploadGB} GB`; + + const downloadGB = (data.daily_stats.network?.gb_downloaded || 0).toFixed(2); + document.getElementById('daily-download-size').textContent = `${downloadGB} GB`; + + document.getElementById('daily-peak-concurrent').textContent = data.daily_stats.peak_concurrent || 0; + } + // 시스템 성능 상세 업데이트 if (data.system_performance?.cpu) { document.getElementById('cpu-count').textContent = data.system_performance.cpu.count || '-'; @@ -1637,8 +1730,43 @@ HTML_TEMPLATE = """ gpuChart.data.datasets[0].data.shift(); } + // 세션 풀 사용량 차트 업데이트 + console.log('Sessions data:', data.sessions); // 디버그 + sessionChart.data.labels.push(timestamp); + const lamaInUse = data.sessions?.simple_lama?.in_use || 0; + const miganInUse = data.sessions?.migan?.in_use || 0; + const rembgInUse = data.sessions?.rembg?.in_use || 0; + console.log('Session in_use:', {lama: lamaInUse, migan: miganInUse, rembg: rembgInUse}); // 디버그 + sessionChart.data.datasets[0].data.push(lamaInUse); + sessionChart.data.datasets[1].data.push(miganInUse); + sessionChart.data.datasets[2].data.push(rembgInUse); + + if (sessionChart.data.labels.length > 20) { + sessionChart.data.labels.shift(); + sessionChart.data.datasets[0].data.shift(); + sessionChart.data.datasets[1].data.shift(); + sessionChart.data.datasets[2].data.shift(); + } + + // 워커 활성도 차트 업데이트 + console.log('Workers data:', data.workers); // 디버그 + workerChart.data.labels.push(timestamp); + const idleWorkers = data.workers?.workers_by_status?.idle?.length || 0; + const busyWorkers = data.workers?.workers_by_status?.busy?.length || 0; + console.log('Worker counts:', {idle: idleWorkers, busy: busyWorkers}); // 디버그 + workerChart.data.datasets[0].data.push(idleWorkers); + workerChart.data.datasets[1].data.push(busyWorkers); + + if (workerChart.data.labels.length > 20) { + workerChart.data.labels.shift(); + workerChart.data.datasets[0].data.shift(); + workerChart.data.datasets[1].data.shift(); + } + performanceChart.update(); gpuChart.update(); + sessionChart.update(); + workerChart.update(); } function updateModelPerformance(stats) { diff --git a/logs/main.log b/logs/main.log index d0f30f5..2e0070b 100644 --- a/logs/main.log +++ b/logs/main.log @@ -235742,3 +235742,18160 @@ 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. +2025-10-02 05:52:58,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:52:58,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:52:58,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:52:58,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:52:58,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:52:58,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:52:58,882 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:52:58,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:52:58,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:52:59,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 05:52:59,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 05:52:59,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:01,307 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:01,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:01,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:01,477 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 05:53:01,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 05:53:01,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:01,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:01,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:01,852 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:01,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 05:53:01,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:53:01,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:02,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:02,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:02,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:02,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 05:53:02,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:53:02,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:03,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:03,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:03,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:03,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:53:03,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:53:03,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:03,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:03,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:03,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:04,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:53:04,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:53:04,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:04,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:04,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:04,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:04,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 05:53:04,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 05:53:04,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:04,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:04,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:04,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:04,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 05:53:04,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 05:53:04,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:06,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:06,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:06,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:06,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 05:53:06,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 05:53:06,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:06,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:06,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:06,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:06,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:53:06,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:53:06,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:09,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:09,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:09,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:09,858 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 05:53:09,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 05:53:09,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:10,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:10,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:10,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:10,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 05:53:10,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:53:10,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:11,245 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:53:11,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:53:11,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:53:11,541 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 05:53:11,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 05:53:11,542 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:53:11,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:11,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:11,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:11,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:53:11,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 05:53:11,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:12,911 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:53:12,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:53:13,022 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.266 +2025-10-02 05:53:13,022 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 05:53:13,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 05:53:13,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:13,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:13,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:13,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 05:53:13,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 05:53:13,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:15,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:15,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:15,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:15,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 05:53:15,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 05:53:15,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:16,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:16,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:16,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:16,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:53:16,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:53:16,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:20,456 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:53:20,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:53:20,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:53:20,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 05:53:20,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 05:53:20,751 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:53:20,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:20,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:20,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:21,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:53:21,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:53:21,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:21,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:21,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:21,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:21,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 05:53:21,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 05:53:21,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:21,832 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:21,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:21,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:21,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 05:53:21,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 05:53:21,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:25,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:25,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:25,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:25,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:53:25,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:53:25,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:27,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:27,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:27,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:27,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:53:27,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:53:27,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:27,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:27,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:27,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:27,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:53:27,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:53:27,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:27,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:27,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:27,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:28,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 05:53:28,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 05:53:28,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:29,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:29,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:29,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:29,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:53:29,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:53:29,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:32,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:32,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:32,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:32,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:53:32,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:53:32,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:33,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:33,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:33,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:33,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 05:53:33,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 05:53:33,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:35,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:35,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:35,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:35,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 05:53:35,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 05:53:35,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:38,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:38,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:38,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:38,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:53:38,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:53:38,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:42,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:42,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:42,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:42,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:53:42,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:53:42,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:43,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:43,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:43,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:43,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:53:43,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:53:43,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:44,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:44,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:44,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:44,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:53:44,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:53:44,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:44,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:44,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:44,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:44,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 05:53:44,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:53:44,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:49,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:49,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:49,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:49,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 05:53:49,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 05:53:49,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:50,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:50,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:50,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:50,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 05:53:50,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 05:53:50,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:51,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:51,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:51,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:51,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 05:53:51,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 05:53:51,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:52,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:52,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:52,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:52,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:53:52,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:53:52,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:53,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:53,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:53,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:53,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 05:53:53,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:53:53,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:53,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:53,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:53,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:53,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 05:53:53,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:53:53,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:54,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:54,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:54,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:54,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:53:54,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:53:54,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:55,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:55,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:55,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:55,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 05:53:55,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:53:55,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:56,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:56,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:56,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:56,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:53:56,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:53:56,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:53:57,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:53:57,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:57,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:58,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:53:58,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:53:58,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:00,135 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:54:00,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:54:00,194 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:54:00,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 05:54:00,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 05:54:00,430 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:54:02,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:02,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:02,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:02,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:54:02,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:54:02,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:02,629 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:54:02,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:54:02,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:54:02,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 05:54:02,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 05:54:02,922 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:54:03,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:03,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:03,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:03,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 05:54:03,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:54:03,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:06,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:06,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:06,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:06,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:54:06,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:54:06,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:07,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:07,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:07,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:07,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:54:07,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:54:07,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:08,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:08,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:08,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:08,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:54:08,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:54:08,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:11,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:11,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:11,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:11,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:54:11,455 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 05:54:11,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:11,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:11,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:11,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:11,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 05:54:11,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 05:54:11,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:13,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:13,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:13,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:13,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:54:13,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:54:13,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:14,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:14,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:14,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:14,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:54:14,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 05:54:14,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:16,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:16,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:16,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:16,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 05:54:16,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 05:54:16,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:16,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:16,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:16,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:16,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:54:16,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:54:16,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:17,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:17,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:17,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:17,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:54:17,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:54:17,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:18,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:18,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:18,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:18,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 05:54:18,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:54:18,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:19,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:19,450 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:54:19,532 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.204 +2025-10-02 05:54:19,532 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 05:54:19,532 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 05:54:20,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:20,878 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:20,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:21,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:54:21,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:54:21,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:22,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:22,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:22,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:22,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:54:22,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:54:22,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:23,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:23,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:23,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:23,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 05:54:23,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:54:23,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:25,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:25,866 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:54:25,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.268 +2025-10-02 05:54:25,958 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 05:54:25,960 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 05:54:26,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:26,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:26,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:26,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:54:26,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:54:26,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:26,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:26,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:26,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:26,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:54:26,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:54:26,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:27,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:27,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:27,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:27,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:54:27,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:54:27,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:33,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:33,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:33,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:33,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 05:54:33,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 05:54:33,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:34,302 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:54:34,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:54:34,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:54:34,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 05:54:34,581 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 05:54:34,582 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:54:39,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:39,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:39,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:39,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:54:39,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:54:39,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:43,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:43,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:43,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:43,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:54:43,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:54:43,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:44,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:44,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:44,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:45,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 05:54:45,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:54:45,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:46,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:46,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:46,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:46,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:54:46,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:54:46,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:47,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:47,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:47,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:47,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 05:54:47,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:54:47,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:49,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:49,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:49,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:49,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:54:49,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 05:54:49,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:50,401 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:50,402 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:50,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:50,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:54:50,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:54:50,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:50,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:50,924 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:54:51,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.356 +2025-10-02 05:54:51,014 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 05:54:51,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 05:54:52,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:52,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:52,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:53,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:54:53,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:54:53,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:53,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:53,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:53,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:53,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:54:53,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:54:53,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:54,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:54,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:54,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:54,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 05:54:54,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:54:54,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:56,179 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:56,201 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:54:56,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.143 +2025-10-02 05:54:56,288 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 05:54:56,289 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 05:54:56,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:56,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:56,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:56,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 05:54:56,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:54:56,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:56,728 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:56,754 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(702, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:54:56,843 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.231 +2025-10-02 05:54:56,843 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 05:54:56,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 05:54:57,188 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:57,189 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:57,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:57,326 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 05:54:57,326 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 05:54:57,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:54:58,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:54:58,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:58,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:58,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:54:58,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:54:58,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:00,484 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:55:00,504 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:55:00,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.794 +2025-10-02 05:55:00,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 05:55:00,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 05:55:01,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:01,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:01,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:01,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:55:01,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 05:55:01,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:03,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:03,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:03,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:03,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:55:03,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:55:03,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:05,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:05,058 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:05,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:05,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:55:05,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:55:05,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:05,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:05,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:05,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:05,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:55:05,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:55:05,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:07,296 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:07,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:07,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:07,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:55:07,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:55:07,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:08,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:08,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:08,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:08,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:55:08,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 05:55:08,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:09,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:09,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:09,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:09,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 05:55:09,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:55:09,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:12,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:12,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:12,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:12,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:55:12,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:55:12,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:16,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:16,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:16,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:16,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:55:16,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:55:16,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:17,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:17,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:17,133 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:17,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:55:17,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:55:17,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:17,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:17,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:17,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:17,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:55:17,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:55:17,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:22,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:22,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:22,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:23,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 05:55:23,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:55:23,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:23,504 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:23,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:23,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:23,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:55:23,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 05:55:23,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:24,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:24,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:24,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:24,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:55:24,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:55:24,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:26,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:26,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:26,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:26,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:55:26,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:55:26,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:27,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:27,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:28,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:28,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:55:28,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:55:28,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:28,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:28,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:28,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:28,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:55:28,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:55:28,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:28,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:28,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:28,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:29,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:55:29,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:55:29,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:30,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:30,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:30,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:30,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:55:30,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 05:55:30,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:31,581 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:31,582 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:31,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:31,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:55:31,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:55:31,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:34,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:34,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:34,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:34,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 05:55:34,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:55:34,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:35,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:35,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:35,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:35,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:55:35,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:55:35,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:35,856 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:35,856 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:35,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:36,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 05:55:36,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:55:36,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:36,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:36,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:36,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:36,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:55:36,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:55:36,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:40,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:40,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:40,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:40,581 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:55:40,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 05:55:40,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:41,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:41,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:41,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:41,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:55:41,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:55:41,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:42,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:42,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:42,092 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:42,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:55:42,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:55:42,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:42,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:55:42,560 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:55:42,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.902 +2025-10-02 05:55:42,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 05:55:42,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 05:55:45,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:45,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:45,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:46,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:55:46,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:55:46,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:46,166 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:55:46,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:55:46,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.173 +2025-10-02 05:55:46,253 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.068s +2025-10-02 05:55:46,253 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +2025-10-02 05:55:46,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:46,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:46,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:46,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:55:46,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:55:46,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:46,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:46,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:46,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:46,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:55:46,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:55:46,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:47,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:47,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:47,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:47,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:55:47,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:55:47,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:49,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:49,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:49,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:49,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 05:55:49,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 05:55:49,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:49,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:49,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:49,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:49,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:55:49,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:55:49,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:49,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:55:49,920 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:55:49,992 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=201.850 +2025-10-02 05:55:49,992 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 05:55:49,992 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +2025-10-02 05:55:50,149 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:50,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:50,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:50,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:55:50,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:55:50,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:50,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:50,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:50,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:50,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:55:50,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:55:50,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:51,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:51,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:51,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:51,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:55:51,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 05:55:51,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:51,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:51,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:51,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:52,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:55:52,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:55:52,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:55,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:55,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:55,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:55,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 05:55:55,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 05:55:55,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:56,544 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:56,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:56,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:56,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 05:55:56,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 05:55:56,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:56,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:55:56,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:55:56,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:55:57,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 05:55:57,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 05:55:57,154 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:55:57,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:57,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:57,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:57,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:55:57,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:55:57,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:58,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:58,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:58,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:58,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:55:58,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:55:58,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:55:58,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:55:58,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:58,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:55:58,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 05:55:58,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:55:58,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:04,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:04,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:04,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:05,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:56:05,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 05:56:05,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:05,376 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:56:05,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:05,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:05,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 05:56:05,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-02 05:56:05,654 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:56:05,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:05,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:05,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:06,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 05:56:06,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:56:06,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:06,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:06,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:06,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:06,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 05:56:06,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 05:56:06,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:06,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:06,950 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:06,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:07,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 05:56:07,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 05:56:07,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:08,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:08,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:08,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:08,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:56:08,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:56:08,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:12,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:12,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:13,025 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:13,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:56:13,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:56:13,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:13,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:13,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:13,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:13,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:56:13,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:56:13,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:14,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:14,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:14,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:14,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:56:14,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:56:14,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:14,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:14,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:14,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:15,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 05:56:15,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 05:56:15,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:15,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:15,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:15,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:15,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 05:56:15,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 05:56:15,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:16,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:16,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:16,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:16,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:56:16,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:56:16,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:17,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:17,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:17,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:17,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 05:56:17,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:56:17,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:17,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:56:17,956 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:56:18,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.885 +2025-10-02 05:56:18,051 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 05:56:18,053 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 05:56:18,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:18,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:18,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:18,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:56:18,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:56:18,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:19,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:19,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:19,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:20,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 05:56:20,039 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 05:56:20,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:20,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:20,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:20,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:20,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 05:56:20,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 05:56:20,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:20,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:20,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:20,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:20,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:56:20,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:56:20,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:20,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:20,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:20,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:20,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:56:20,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:56:20,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:22,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:22,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:22,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:22,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 05:56:22,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:56:22,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:23,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:23,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:23,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:24,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:56:24,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:56:24,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:25,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:25,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:25,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:25,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:56:25,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:56:25,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:25,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:25,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:25,897 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:26,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 05:56:26,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 05:56:26,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:26,157 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:56:26,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:26,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:26,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +2025-10-02 05:56:26,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +2025-10-02 05:56:26,416 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:56:27,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:27,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:27,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:27,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:56:27,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:56:27,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:31,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:31,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:31,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:31,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:56:31,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:56:31,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:32,003 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 05:56:32,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 05:56:32,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 05:56:32,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.410s +2025-10-02 05:56:32,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.410s (avg: 0.137s/image) +2025-10-02 05:56:32,414 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 05:56:32,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:32,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:32,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:32,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 05:56:32,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:56:32,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:32,917 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:56:32,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:32,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:33,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.253s +2025-10-02 05:56:33,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.253s (avg: 0.127s/image) +2025-10-02 05:56:33,172 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:56:33,379 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:56:33,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:33,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:33,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 05:56:33,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 05:56:33,673 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:56:36,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:36,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:36,538 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:36,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:56:36,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:56:36,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:38,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:38,175 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:38,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:38,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:56:38,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:56:38,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:39,847 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:39,847 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:39,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:40,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:56:40,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:56:40,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:40,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:40,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:40,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:40,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 05:56:40,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:56:40,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:40,845 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:40,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:40,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:41,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:56:41,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:56:41,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:41,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:41,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:41,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:42,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 05:56:42,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:56:42,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:43,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:43,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:43,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:43,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 05:56:43,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:56:43,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:43,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:43,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:43,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:43,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:56:43,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:56:43,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:46,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:46,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:46,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:46,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 05:56:46,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:56:46,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:47,089 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:56:47,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:47,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:47,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 05:56:47,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 05:56:47,364 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:56:49,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:49,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:49,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:49,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 05:56:49,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 05:56:49,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:49,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:49,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:49,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:49,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +2025-10-02 05:56:49,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-02 05:56:49,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:51,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:51,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:51,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:51,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:56:51,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:56:51,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:54,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:54,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:54,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:54,972 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 05:56:54,972 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 05:56:54,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:56:55,149 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:56:55,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:55,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:55,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 05:56:55,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 05:56:55,418 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:56:57,819 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:56:57,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:57,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:58,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 05:56:58,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 05:56:58,117 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:56:58,433 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:56:58,464 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:56:58,575 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.338 +2025-10-02 05:56:58,575 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-02 05:56:58,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-02 05:56:59,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:56:59,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:56:59,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:56:59,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 05:56:59,747 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 05:56:59,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:01,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:01,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:01,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:02,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:57:02,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 05:57:02,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:05,969 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:05,970 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:06,014 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:06,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 05:57:06,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 05:57:06,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:11,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:11,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:11,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:11,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:57:11,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 05:57:11,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:12,061 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:12,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:12,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:12,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:57:12,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:57:12,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:13,700 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:13,737 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:13,828 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.868 +2025-10-02 05:57:13,829 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 05:57:13,829 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 05:57:15,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:15,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:15,822 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:15,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 05:57:15,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 05:57:15,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:18,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:18,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:19,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:19,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 05:57:19,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 05:57:19,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:19,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:19,831 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:19,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.813 +2025-10-02 05:57:19,910 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 05:57:19,910 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 05:57:20,616 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:20,664 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:20,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.806 +2025-10-02 05:57:20,748 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 05:57:20,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 05:57:22,864 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:57:22,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:57:22,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:57:23,148 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 05:57:23,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 05:57:23,149 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:57:23,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:23,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:23,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.881 +2025-10-02 05:57:23,736 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 05:57:23,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 05:57:24,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:24,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:24,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:24,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:57:24,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:57:24,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:26,106 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:26,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:26,234 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=203.788 +2025-10-02 05:57:26,235 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 05:57:26,235 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 05:57:27,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:27,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:27,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:27,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:57:27,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:57:27,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:28,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:28,201 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:28,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:28,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 05:57:28,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 05:57:28,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:30,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:30,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:30,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:30,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 05:57:30,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 05:57:30,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:30,558 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:30,581 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:30,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=229.184 +2025-10-02 05:57:30,665 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 05:57:30,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 05:57:30,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:30,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:30,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:30,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:57:30,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:57:30,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:31,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:31,740 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:31,820 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.199 +2025-10-02 05:57:31,821 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 05:57:31,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 05:57:33,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:33,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:33,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:33,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:57:33,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:57:33,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:36,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:36,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:36,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:36,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:57:36,292 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:57:36,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:37,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:37,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:37,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:37,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 05:57:37,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:57:37,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:37,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:37,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:37,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:37,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:57:37,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:57:37,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:39,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:39,947 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:39,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:40,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 05:57:40,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:57:40,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:40,412 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:40,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:40,534 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.015 +2025-10-02 05:57:40,534 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 05:57:40,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 05:57:43,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:43,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:43,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:43,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 05:57:43,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:57:43,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:44,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:44,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:44,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:44,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:57:44,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:57:44,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:45,528 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:45,555 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:45,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.428 +2025-10-02 05:57:45,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 05:57:45,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 05:57:47,092 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:47,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:47,191 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.463 +2025-10-02 05:57:47,191 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 05:57:47,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 05:57:47,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:47,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:47,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:47,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:57:47,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:57:47,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:49,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:49,480 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:49,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:49,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 05:57:49,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:57:49,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:51,181 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:51,200 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:51,278 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.411 +2025-10-02 05:57:51,279 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 05:57:51,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 05:57:52,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:52,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:52,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:52,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 05:57:52,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:57:52,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:55,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:55,246 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:55,326 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.841 +2025-10-02 05:57:55,326 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 05:57:55,326 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 05:57:55,744 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:55,745 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:55,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:55,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:57:55,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:57:55,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:57,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:57:57,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:57,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:57,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:57:57,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:57:57,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:57:59,797 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:59,822 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:57:59,907 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.276 +2025-10-02 05:57:59,908 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 05:57:59,908 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 05:58:00,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:00,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:00,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:00,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:58:00,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:58:00,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:01,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:01,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:01,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:01,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 05:58:01,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:58:01,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:01,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:58:01,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:58:01,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.176 +2025-10-02 05:58:01,562 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 05:58:01,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 05:58:02,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:02,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:02,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:02,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:58:02,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:58:02,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:05,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:05,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:05,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:05,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:58:05,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:58:05,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:11,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:11,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:11,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:11,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:58:11,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:58:11,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:12,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:12,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:12,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:13,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:58:13,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:58:13,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:14,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:14,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:14,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:15,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:58:15,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:58:15,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:15,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:15,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:15,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:15,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:58:15,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:58:15,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:18,201 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:18,202 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:18,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:18,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 05:58:18,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 05:58:18,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:18,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:18,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:18,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:18,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 05:58:18,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 05:58:18,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:19,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:19,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:19,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:20,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:58:20,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:58:20,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:21,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:21,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:21,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:21,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:58:21,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:58:21,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:26,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:26,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:26,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:26,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:58:26,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:58:26,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:26,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:26,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:26,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:26,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 05:58:26,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 05:58:26,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:30,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:30,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:30,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:30,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 05:58:30,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 05:58:30,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:30,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:30,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:30,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:31,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:58:31,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 05:58:31,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:31,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:31,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:32,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:32,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:58:32,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:58:32,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:33,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:33,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:33,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:33,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 05:58:33,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 05:58:33,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:34,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:34,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:34,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:34,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 05:58:34,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 05:58:34,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:36,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:36,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:36,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:36,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 05:58:36,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 05:58:36,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:37,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:37,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:37,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:37,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 05:58:37,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:58:37,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:38,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:38,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:39,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:39,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 05:58:39,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 05:58:39,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:39,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:39,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:39,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:39,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:58:39,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:58:39,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:41,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:41,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:41,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:41,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:58:41,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:58:41,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:41,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:41,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:41,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:42,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 05:58:42,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 05:58:42,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:42,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:42,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:42,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:43,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 05:58:43,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 05:58:43,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:44,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:44,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:44,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:44,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 05:58:44,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:58:44,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:44,715 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:44,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:44,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:44,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:58:44,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:58:44,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:46,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:46,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:46,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:46,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 05:58:46,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:58:46,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:46,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:46,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:46,733 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:46,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 05:58:46,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:58:46,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:46,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:46,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:47,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:47,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:58:47,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:58:47,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:48,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:48,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:48,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:48,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 05:58:48,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:58:48,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:48,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:48,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:48,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:48,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 05:58:48,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:58:48,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:49,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:49,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:49,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:49,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 05:58:49,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 05:58:49,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:49,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:49,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:49,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:49,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 05:58:49,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 05:58:49,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:50,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:50,641 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:50,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:50,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:58:50,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:58:50,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:53,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:53,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:53,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:54,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:58:54,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:58:54,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:54,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:54,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:54,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:54,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 05:58:54,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 05:58:54,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:55,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:55,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:55,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:55,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 05:58:55,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 05:58:55,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:57,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:57,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:57,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:57,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 05:58:57,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:58:57,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:58,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:58,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:58,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:58,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:58:58,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:58:58,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:58,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:58,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:58,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:58,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:58:58,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 05:58:58,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:58:59,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:58:59,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:59,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:59,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 05:58:59,480 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 05:58:59,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:00,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:00,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:00,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:00,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 05:59:00,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 05:59:00,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:01,054 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:59:01,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:01,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:59:01,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 05:59:01,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-02 05:59:01,335 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:59:02,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:02,111 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:02,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:02,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:59:02,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:59:02,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:03,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:03,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:03,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:03,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 05:59:03,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:59:03,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:05,897 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:59:05,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:05,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:59:06,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 05:59:06,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 05:59:06,199 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:59:07,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:07,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:07,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:07,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:59:07,642 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 05:59:07,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:07,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:07,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:07,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:08,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 05:59:08,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 05:59:08,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:08,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:08,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:08,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:08,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 05:59:08,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:59:08,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:09,833 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:09,850 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:59:09,930 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.106 +2025-10-02 05:59:09,930 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 05:59:09,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 05:59:10,421 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:10,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:10,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:10,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:59:10,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:59:10,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:12,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:12,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:12,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:12,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:59:12,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:59:12,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:13,742 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:13,768 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:59:13,855 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.848 +2025-10-02 05:59:13,855 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 05:59:13,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 05:59:14,797 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:14,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:14,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:14,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 05:59:14,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 05:59:14,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:15,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:15,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:15,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:15,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:59:15,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:59:15,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:17,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:17,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:17,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:17,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:59:17,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:59:17,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:17,793 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:17,817 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:59:17,906 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.982 +2025-10-02 05:59:17,907 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 05:59:17,907 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 05:59:18,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:18,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:18,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:18,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 05:59:18,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 05:59:18,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:19,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:19,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:19,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:19,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 05:59:19,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 05:59:19,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:19,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:19,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:19,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:19,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 05:59:19,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 05:59:19,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:19,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:19,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:19,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:20,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:59:20,027 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:59:20,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:21,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:21,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:21,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:21,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 05:59:21,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 05:59:21,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:23,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:23,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:23,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:23,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:59:23,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:59:23,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:23,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:23,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:23,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:23,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:59:23,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:59:23,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:25,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:25,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:25,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:25,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 05:59:25,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 05:59:25,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:26,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:26,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:26,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:26,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:59:26,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:59:26,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:26,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:26,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:26,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:26,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:59:26,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:59:26,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:27,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:27,035 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:27,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:27,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 05:59:27,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 05:59:27,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:29,862 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:29,892 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:59:29,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.795 +2025-10-02 05:59:29,982 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 05:59:29,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 05:59:30,361 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:59:30,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:30,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:59:30,638 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 05:59:30,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-02 05:59:30,639 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:59:33,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:33,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:33,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:33,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:59:33,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:59:33,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:33,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:33,742 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:59:33,827 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.409 +2025-10-02 05:59:33,827 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 05:59:33,827 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 05:59:34,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:34,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:34,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:34,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:59:34,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:59:34,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:35,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:35,292 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:35,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:35,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 05:59:35,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 05:59:35,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:36,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:36,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:36,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:36,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:59:36,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:59:36,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:37,754 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:37,773 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(790, 790, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:59:37,850 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.970 +2025-10-02 05:59:37,850 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 05:59:37,850 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 05:59:39,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:39,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:39,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:39,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:59:39,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:59:39,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:39,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:39,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:39,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:40,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 05:59:40,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 05:59:40,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:44,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:44,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:44,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:44,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 05:59:44,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:59:44,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:48,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:48,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:48,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:48,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:59:48,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:59:48,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:50,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:50,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:50,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:50,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:59:50,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:59:50,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:52,775 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:52,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:52,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:52,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 05:59:52,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:59:52,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:53,265 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:59:53,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:53,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:59:53,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 05:59:53,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 05:59:53,557 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:59:54,692 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 05:59:54,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:54,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:59:54,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 05:59:54,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 05:59:54,968 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 05:59:57,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:57,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:57,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:57,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 05:59:57,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:59:57,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:57,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:57,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:57,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:57,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:59:57,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:59:57,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:57,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:57,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:57,959 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:58,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:59:58,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:59:58,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 05:59:58,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 05:59:58,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:58,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:59:58,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 05:59:58,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:59:58,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:00,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:00,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:00,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:00,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:00:00,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:00:00,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:01,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:01,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:01,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:01,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:00:01,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:00:01,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:02,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:02,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:02,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:02,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:00:02,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:00:02,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:02,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:02,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:02,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:02,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:00:02,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:00:02,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:03,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:03,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:03,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:03,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:00:03,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:00:03,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:03,293 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:00:03,316 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:00:03,390 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=204.776 +2025-10-02 06:00:03,390 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 06:00:03,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:00:05,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:05,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:05,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:05,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:00:05,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:00:05,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:05,586 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:00:05,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:00:05,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.397 +2025-10-02 06:00:05,696 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:00:05,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:00:06,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:06,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:06,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:06,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:00:06,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:00:06,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:09,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:09,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:09,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:09,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:00:09,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:00:09,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:12,245 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:12,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:12,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:12,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:00:12,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:00:12,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:13,695 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:00:13,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:13,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:13,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 06:00:13,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 06:00:13,996 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:00:14,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:14,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:14,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:14,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:00:14,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:00:14,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:15,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:15,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:15,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:15,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:00:15,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:00:15,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:15,485 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:00:15,520 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:00:15,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.835 +2025-10-02 06:00:15,607 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:00:15,607 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:00:16,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:16,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:16,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:16,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:00:16,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:00:16,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:16,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:16,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:17,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:17,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:00:17,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:00:17,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:17,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:17,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:17,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:17,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:00:17,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:00:17,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:18,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:18,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:18,187 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:18,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:00:18,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:00:18,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:18,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:18,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:18,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:18,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:00:18,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:00:18,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:19,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:19,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:19,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:19,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:00:19,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:00:19,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:20,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:20,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:20,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:20,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:00:20,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:00:20,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:22,748 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:22,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:22,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:22,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:00:22,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:00:22,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:23,088 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:00:23,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:23,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:23,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 06:00:23,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 06:00:23,376 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:00:23,565 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:23,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:23,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:23,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:00:23,730 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:00:23,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:24,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:24,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:24,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:24,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:00:24,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:00:24,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:24,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:24,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:24,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:25,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:00:25,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:00:25,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:25,243 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:25,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:25,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:25,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:00:25,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:00:25,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:27,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:27,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:27,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:27,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:00:27,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:00:27,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:28,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:28,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:28,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:28,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:00:28,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:00:28,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:28,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:28,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:28,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:29,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:00:29,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:00:29,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:29,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:29,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:29,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:29,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:00:29,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:00:29,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:31,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:31,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:31,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:31,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:00:31,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:00:31,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:32,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:32,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:32,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:32,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:00:32,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:00:32,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:35,630 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:00:35,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:35,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:35,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 06:00:35,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 06:00:35,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:00:37,082 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:00:37,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:37,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:37,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 06:00:37,379 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 06:00:37,379 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:00:37,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:37,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:37,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:37,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:00:37,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:00:37,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:40,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:40,594 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:40,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:40,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:00:40,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:00:40,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:41,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:41,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:41,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:41,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:00:41,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:00:41,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:41,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:41,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:41,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:41,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:00:41,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:00:41,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:44,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:44,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:44,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:44,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:00:44,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:00:44,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:45,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:45,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:45,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:45,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:00:45,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:00:45,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:45,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:45,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:45,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:46,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:00:46,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:00:46,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:47,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:47,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:47,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:47,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:00:47,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:00:47,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:49,073 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:49,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:49,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:49,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:00:49,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:00:49,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:49,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:49,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:49,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:49,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:00:49,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:00:49,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:50,653 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:50,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:50,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:50,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:00:50,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:00:50,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:50,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:00:50,922 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:00:51,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.710 +2025-10-02 06:00:51,001 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 06:00:51,001 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:00:53,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:53,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:53,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:53,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:00:53,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:00:53,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:53,392 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:00:53,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:53,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:53,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 06:00:53,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 06:00:53,675 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:00:54,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:54,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:55,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:55,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:00:55,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:00:55,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:55,287 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:55,288 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:55,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:55,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:00:55,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:00:55,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:56,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:56,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:56,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:56,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:00:56,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:00:56,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:58,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:58,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:58,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:58,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:00:58,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:00:58,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:00:58,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:00:58,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:00:58,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:00:58,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:00:58,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:00:58,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:00,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:00,448 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:00,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:00,620 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:01:00,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:01:00,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:01,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:01,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:01,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:01,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:01:01,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:01:01,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:02,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:02,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:02,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:02,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:01:02,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:01:02,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:03,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:03,530 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:03,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:03,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:01:03,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:01:03,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:04,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:04,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:04,356 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:04,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:01:04,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:01:04,472 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:06,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:06,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:06,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:06,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:01:06,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:01:06,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:08,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:08,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:08,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:08,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:01:08,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:01:08,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:09,760 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:01:09,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:01:09,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:01:10,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 06:01:10,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 06:01:10,034 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:01:10,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:10,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:10,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:10,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:01:10,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:01:10,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:11,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:11,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:12,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:12,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:01:12,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:01:12,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:12,910 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:01:12,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:01:12,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:01:13,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 06:01:13,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 06:01:13,203 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:01:14,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:14,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:14,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:14,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:01:14,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:01:14,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:18,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:18,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:18,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:18,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:01:18,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:01:18,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:19,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:19,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:19,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:19,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:01:19,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:19,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:24,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:24,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:24,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:24,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:01:24,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:01:24,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:24,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:24,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:24,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:24,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:01:24,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:24,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:24,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:24,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:24,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:25,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:01:25,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:01:25,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:25,226 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:01:25,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:01:25,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:01:25,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 06:01:25,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 06:01:25,521 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:01:26,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:26,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:26,870 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:26,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:01:26,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:01:26,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:29,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:29,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:29,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:29,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:01:29,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:01:29,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:30,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:30,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:30,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:30,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:01:30,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:01:30,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:31,409 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:31,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:31,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:31,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:01:31,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:01:31,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:32,026 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:32,052 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:01:32,132 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.192 +2025-10-02 06:01:32,133 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 06:01:32,134 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:01:32,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:32,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:32,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:32,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:01:32,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:01:32,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:35,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:35,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:35,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:35,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:01:35,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:35,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:38,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:38,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:38,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:38,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:01:38,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:01:38,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:39,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:39,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:39,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:39,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:01:39,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:01:39,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:40,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:40,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:40,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:40,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:01:40,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:40,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:40,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:40,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:40,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:40,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:01:40,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:01:40,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:43,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:43,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:43,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:44,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:01:44,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:44,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:45,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:45,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:45,142 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:45,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:01:45,269 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:45,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:48,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:48,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:48,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:48,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:01:48,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:01:48,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:49,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:49,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:49,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:50,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:01:50,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:01:50,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:50,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:50,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:50,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:50,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:01:50,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:01:50,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:50,861 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:50,882 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:01:50,979 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.885 +2025-10-02 06:01:50,980 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-02 06:01:50,980 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 06:01:52,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:52,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:52,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:52,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:01:52,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:01:52,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:53,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:53,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:53,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:53,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:01:53,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:01:53,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:54,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:54,808 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:01:54,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.343 +2025-10-02 06:01:54,887 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 06:01:54,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:01:55,318 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:55,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:01:55,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.762 +2025-10-02 06:01:55,428 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:01:55,429 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:01:59,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:01:59,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:59,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:01:59,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:01:59,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:01:59,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:01:59,735 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:59,754 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:01:59,837 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.501 +2025-10-02 06:01:59,837 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:01:59,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:02:00,519 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:02:00,548 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:02:00,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.382 +2025-10-02 06:02:00,631 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:02:00,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 06:02:01,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:01,526 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:01,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:01,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:02:01,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:02:01,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:06,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:06,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:06,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:07,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 06:02:07,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 06:02:07,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:08,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:08,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:08,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:08,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:02:08,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:02:08,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:08,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:08,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:09,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:09,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:02:09,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:02:09,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:14,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:14,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:14,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:14,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:02:14,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:02:14,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:14,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:14,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:14,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:14,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:02:14,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:02:14,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:15,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:15,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:15,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:15,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:02:15,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:02:15,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:18,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:18,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:18,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:18,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:02:18,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:02:18,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:19,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:19,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:19,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:19,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:02:19,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:02:19,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:21,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:21,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:21,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:21,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:02:21,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:02:21,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:23,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:23,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:23,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:24,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:02:24,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:02:24,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:24,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:24,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:24,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:24,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:02:24,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:02:24,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:24,695 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:02:24,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:02:24,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.852 +2025-10-02 06:02:24,818 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 06:02:24,820 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 06:02:29,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:29,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:29,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:29,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:02:29,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:02:29,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:30,735 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:30,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:30,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:30,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:02:30,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:02:30,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:32,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:02:32,833 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:02:32,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.695 +2025-10-02 06:02:32,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:02:32,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:02:36,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:36,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:36,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:36,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:02:36,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:02:36,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:37,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:37,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:37,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:37,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:02:37,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:02:37,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:38,545 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:02:38,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:02:38,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:02:38,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 06:02:38,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 06:02:38,845 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:02:42,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:42,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:42,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:42,640 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:02:42,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:02:42,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:44,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:44,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:44,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:44,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:02:44,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:02:44,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:45,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:45,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:45,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:45,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:02:45,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:02:45,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:47,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:47,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:47,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:47,355 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:02:47,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:02:47,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:47,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:47,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:47,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:47,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:02:47,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:02:47,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:49,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:49,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:49,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:49,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:02:49,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:02:49,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:51,350 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:02:51,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:02:51,461 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=219.478 +2025-10-02 06:02:51,461 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 06:02:51,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:02:51,497 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:51,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:51,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:51,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:02:51,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:02:51,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:52,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:52,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:52,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:52,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:02:52,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:02:52,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:55,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:55,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:55,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:55,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:02:55,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:02:55,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:56,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:56,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:56,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:56,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:02:56,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:02:56,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:56,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:56,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:57,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:57,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:02:57,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:02:57,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:02:58,829 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:02:58,830 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:58,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:02:58,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:02:58,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:02:58,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:00,605 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:00,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:00,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:00,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:03:00,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:03:00,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:02,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:02,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:02,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:02,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:03:02,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:03:02,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:02,809 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:02,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:02,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.707 +2025-10-02 06:03:02,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 06:03:02,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:03:04,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:04,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:04,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:04,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:03:04,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:03:04,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:05,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:05,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:05,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:05,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:03:05,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:03:05,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:08,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:08,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:08,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:09,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:03:09,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:03:09,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:09,055 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:09,078 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:09,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.619 +2025-10-02 06:03:09,153 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 06:03:09,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:03:09,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:09,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:09,207 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:09,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:03:09,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:03:09,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:11,258 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:11,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:11,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:11,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:03:11,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:03:11,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:12,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:12,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:12,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:12,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:03:12,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:03:12,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:12,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:12,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:12,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:12,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:03:12,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:03:12,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:14,043 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:14,070 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:14,146 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.633 +2025-10-02 06:03:14,146 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:03:14,147 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:03:14,541 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:14,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:14,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:14,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:03:14,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:03:14,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:15,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:15,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:15,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:15,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:03:15,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:03:15,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:18,701 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:18,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:18,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:18,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:03:18,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:03:18,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:20,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:20,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:20,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:21,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:03:21,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:03:21,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:21,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:21,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:21,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:22,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:03:22,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:03:22,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:22,204 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:03:22,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:03:22,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:03:22,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 06:03:22,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 06:03:22,496 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:03:22,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:22,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:22,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:22,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:03:22,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:03:22,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:26,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:26,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:26,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:26,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:03:26,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:03:26,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:26,632 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:26,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:26,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:26,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:03:26,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:03:26,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:27,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:27,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:27,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:27,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:03:27,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:03:27,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:27,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:27,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:27,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:27,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:03:27,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:03:27,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:28,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:28,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:28,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:28,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:03:28,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:03:28,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:28,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:28,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:28,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:28,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 06:03:28,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 06:03:28,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:29,140 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:29,169 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:29,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.426 +2025-10-02 06:03:29,257 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:03:29,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:03:29,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:29,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:29,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:29,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:03:29,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:03:29,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:30,113 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:30,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:30,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.687 +2025-10-02 06:03:30,216 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:03:30,216 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:03:32,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:32,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:33,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:33,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:03:33,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:03:33,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:36,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:36,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:36,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:36,661 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:03:36,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:03:36,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:36,820 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:03:36,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:03:36,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:03:37,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 06:03:37,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 06:03:37,106 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:03:37,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:37,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:37,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:37,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:03:37,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:03:37,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:37,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:37,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:37,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:37,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:03:37,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:03:37,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:43,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:43,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:43,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:43,391 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:03:43,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:03:43,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:43,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:43,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:43,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:43,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:03:43,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:03:43,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:43,860 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:43,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:43,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:44,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:03:44,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:03:44,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:45,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:45,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:45,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:45,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:03:45,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:03:45,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:45,711 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:03:45,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:03:45,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:03:45,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 06:03:45,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.274s (avg: 0.137s/image) +2025-10-02 06:03:45,986 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:03:46,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:46,066 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:46,126 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.471 +2025-10-02 06:03:46,126 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.059s +2025-10-02 06:03:46,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.060s +2025-10-02 06:03:46,395 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:46,416 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:46,489 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.323 +2025-10-02 06:03:46,489 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 06:03:46,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 06:03:47,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:47,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:47,944 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:48,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:03:48,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:03:48,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:51,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:51,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:51,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:52,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:03:52,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:03:52,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:52,891 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:03:52,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:03:52,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:03:53,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 06:03:53,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 06:03:53,176 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:03:53,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:53,278 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:53,367 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.098 +2025-10-02 06:03:53,368 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:03:53,369 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:03:53,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:53,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:53,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:53,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:03:53,957 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:03:53,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:55,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:55,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:55,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:55,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:03:55,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:03:55,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:55,557 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:55,581 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:55,666 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.041 +2025-10-02 06:03:55,667 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:03:55,667 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:03:56,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:56,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:56,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:56,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:03:56,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:03:56,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:57,309 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:57,335 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:57,413 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.097 +2025-10-02 06:03:57,413 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:03:57,414 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:03:57,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:57,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:57,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:57,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:03:57,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:03:57,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:03:59,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:03:59,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:03:59,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:59,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:03:59,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:03:59,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:00,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:00,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:00,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:00,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:04:00,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:04:00,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:00,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:00,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:00,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:00,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:04:00,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:04:00,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:01,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:01,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:01,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:01,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:04:01,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:04:01,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:02,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:02,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:02,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:02,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:04:02,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:04:02,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:03,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:03,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:03,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:03,248 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:04:03,248 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:04:03,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:03,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:03,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:03,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:03,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:04:03,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:04:03,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:03,953 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:03,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:03,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:04,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:04:04,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:04:04,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:04,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:04,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:04,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:05,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:04:05,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:04:05,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:06,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:06,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:06,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:06,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:04:06,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:04:06,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:07,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:07,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:07,437 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:07,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:04:07,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:04:07,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:11,336 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:11,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:11,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:11,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:04:11,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:04:11,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:17,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:17,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:17,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:18,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:04:18,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:04:18,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:18,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:18,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:18,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:18,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:04:18,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:04:18,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:20,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:20,063 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:20,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:20,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:04:20,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:04:20,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:20,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:20,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:20,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:20,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 06:04:20,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 06:04:20,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:23,252 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:04:23,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:04:23,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:04:23,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 06:04:23,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.308s (avg: 0.154s/image) +2025-10-02 06:04:23,564 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:04:23,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:23,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:23,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:23,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:04:23,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:04:23,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:26,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:26,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:26,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:26,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:04:26,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:04:26,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:32,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:32,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:32,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:33,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:04:33,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:04:33,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:33,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:33,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:33,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:33,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:04:33,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:04:33,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:33,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:33,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:33,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:34,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:04:34,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:04:34,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:34,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:34,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:34,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:34,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:04:34,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:04:34,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:37,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:37,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:37,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:37,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:04:37,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:04:37,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:37,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:37,733 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:37,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:37,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 06:04:37,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 06:04:37,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:38,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:38,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:38,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:38,593 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:04:38,593 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:04:38,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:39,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:39,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:39,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:39,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:04:39,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:04:39,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:40,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:40,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:40,211 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:40,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:04:40,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:04:40,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:42,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:42,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:42,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:42,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:04:42,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:04:42,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:42,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:42,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:42,574 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:42,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:04:42,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:04:42,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:42,928 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:04:42,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:04:43,041 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.987 +2025-10-02 06:04:43,041 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:04:43,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:04:43,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:43,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:43,385 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:43,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:04:43,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:04:43,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:47,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:47,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:47,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:47,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:04:47,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:04:47,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:48,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:48,125 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:48,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:48,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:04:48,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:04:48,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:48,288 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:04:48,318 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:04:48,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.702 +2025-10-02 06:04:48,401 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:04:48,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:04:48,647 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:04:48,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:04:48,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:04:48,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 06:04:48,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 06:04:48,926 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:04:49,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:49,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:49,152 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:49,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:04:49,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:04:49,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:51,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:51,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:51,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:51,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:04:51,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:04:51,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:52,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:52,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:52,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:52,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:04:52,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:04:52,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:53,419 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:04:53,445 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:04:53,535 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.934 +2025-10-02 06:04:53,535 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:04:53,536 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:04:54,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:54,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:54,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:54,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:04:54,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:04:54,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:54,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:54,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:54,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:54,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:04:54,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:04:54,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:55,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:04:55,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:04:55,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:04:55,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:04:55,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:04:55,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:04:58,740 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:04:58,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:04:58,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:04:59,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.315s +2025-10-02 06:04:59,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.315s (avg: 0.158s/image) +2025-10-02 06:04:59,057 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:05:00,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:00,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:00,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:00,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:05:00,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:00,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:01,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:01,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:01,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:01,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:05:01,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:05:01,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:01,803 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:01,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:01,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:01,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:05:01,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:05:01,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:02,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:02,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:02,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:02,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:05:02,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:05:02,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:02,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:05:02,819 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:05:02,902 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.465 +2025-10-02 06:05:02,902 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:05:02,904 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:05:06,294 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:05:06,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:05:06,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:05:06,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 06:05:06,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 06:05:06,592 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:05:07,104 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:05:07,134 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:05:07,225 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.353 +2025-10-02 06:05:07,225 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:05:07,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:05:08,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:08,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:08,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:08,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:05:08,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:05:08,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:10,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:10,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:10,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:10,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:05:10,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:10,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:12,968 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:05:13,004 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:05:13,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.197 +2025-10-02 06:05:13,114 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +2025-10-02 06:05:13,116 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +2025-10-02 06:05:13,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:13,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:13,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:13,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:05:13,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:05:13,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:14,306 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:05:14,329 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:05:14,422 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.102 +2025-10-02 06:05:14,423 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 06:05:14,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 06:05:15,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:15,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:15,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:15,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:05:15,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:05:15,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:15,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:15,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:15,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:15,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:05:15,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:05:15,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:16,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:16,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:16,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:16,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:05:16,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:05:16,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:17,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:17,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:17,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:17,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:05:17,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:05:17,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:18,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:18,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:18,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:18,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:05:18,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:05:18,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:19,038 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:19,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:19,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:19,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:05:19,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:05:19,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:19,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:19,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:19,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:19,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:05:19,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:05:19,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:20,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:20,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:20,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:20,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:05:20,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:05:20,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:20,499 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:20,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:20,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:20,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:05:20,638 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:05:20,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:21,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:21,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:21,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:21,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:05:21,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:05:21,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:23,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:23,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:23,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:23,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:05:23,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:05:23,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:23,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:23,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:23,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:23,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:05:24,000 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:05:24,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:25,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:25,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:25,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:25,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:05:25,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:05:25,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:26,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:26,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:26,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:26,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:05:26,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:05:26,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:26,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:26,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:27,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:27,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:05:27,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:27,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:27,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:27,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:27,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:27,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:05:27,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:05:27,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:28,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:28,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:28,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:28,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:05:28,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:05:28,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:29,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:29,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:29,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:29,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:05:29,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:29,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:30,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:30,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:30,129 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:30,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:05:30,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:05:30,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:30,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:30,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:30,576 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:30,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:05:30,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:05:30,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:32,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:32,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:32,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:32,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:05:32,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:05:32,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:33,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:33,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:33,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:33,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:05:33,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:33,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:35,130 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:35,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:35,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:35,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:05:35,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:05:35,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:35,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:35,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:35,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:35,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:05:35,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:05:35,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:37,454 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:05:37,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:05:37,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:05:37,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 06:05:37,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 06:05:37,753 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:05:39,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:39,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:39,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:39,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:05:39,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:05:39,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:41,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:05:41,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:05:41,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:05:41,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 06:05:41,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 06:05:41,890 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:05:44,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:44,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:44,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:44,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:05:44,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:05:44,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:46,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:46,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:46,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:47,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:05:47,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:47,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:47,598 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:47,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:47,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:47,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:05:47,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:05:47,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:52,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:52,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:52,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:52,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:05:52,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:05:52,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:52,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:52,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:52,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:53,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 06:05:53,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 06:05:53,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:53,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:53,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:53,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:54,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:05:54,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:05:54,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:54,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:54,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:54,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:54,910 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:05:54,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:05:54,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:55,362 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:55,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:55,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:55,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:05:55,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:05:55,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:57,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:57,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:57,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:57,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:05:57,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:05:57,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:05:59,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:05:59,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:05:59,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:59,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:05:59,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:05:59,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:03,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:03,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:03,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:03,259 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:06:03,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:06:03,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:03,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:03,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:03,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:03,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:06:03,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:06:03,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:04,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:04,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:04,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:04,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:06:04,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:06:04,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:05,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:05,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:05,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:05,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:06:05,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:06:05,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:06,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:06,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:06,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:06,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:06:06,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:06:06,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:07,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:07,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:07,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:07,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:06:07,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:06:07,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:08,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:08,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:09,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:09,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:06:09,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:06:09,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:10,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:10,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:10,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:10,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:06:10,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:06:10,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:10,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:10,913 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:10,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:11,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:06:11,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:06:11,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:11,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:11,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:11,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:11,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:06:11,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:06:11,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:12,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:12,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:12,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:13,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:06:13,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:06:13,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:13,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:13,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:13,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:14,055 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:06:14,055 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:06:14,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:15,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:15,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:15,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:15,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:06:15,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:06:15,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:16,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:16,884 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:16,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:17,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:06:17,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:06:17,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:17,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:17,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:17,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:18,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:06:18,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:06:18,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:18,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:18,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:18,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:18,322 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:06:18,322 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:06:18,322 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:19,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:19,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:19,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:19,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:06:19,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:06:19,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:20,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:20,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:20,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:20,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:06:20,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:06:20,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:20,778 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:06:20,811 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:06:20,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.090 +2025-10-02 06:06:20,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-02 06:06:20,914 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 06:06:21,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:21,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:21,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:21,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:06:21,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:06:21,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:22,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:22,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:22,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:23,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:06:23,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:06:23,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:23,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:23,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:23,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:23,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:06:23,597 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:06:23,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:24,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:24,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:24,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:25,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:06:25,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:06:25,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:26,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:26,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:26,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:26,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:06:26,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:06:26,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:26,772 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:26,773 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:26,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:26,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:06:26,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:06:26,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:28,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:28,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:28,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:28,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:06:28,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:06:28,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:29,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:29,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:29,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:29,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:06:29,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:06:29,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:29,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:29,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:29,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:29,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:06:29,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:06:29,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:29,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:29,835 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:29,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:29,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:06:29,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:06:29,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:34,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:34,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:34,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:34,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:06:34,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:06:34,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:35,299 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:35,300 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:35,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:35,471 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:06:35,471 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:06:35,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:35,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:35,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:35,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:36,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:06:36,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:06:36,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:36,339 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:06:36,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:06:36,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:06:36,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 06:06:36,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.132s/image) +2025-10-02 06:06:36,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:06:37,052 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:37,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:37,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:37,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:06:37,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:06:37,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:37,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:37,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:37,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:37,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:06:37,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:06:37,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:37,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:37,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:37,738 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:37,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:06:37,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:06:37,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:42,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:42,309 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:42,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:42,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:06:42,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:06:42,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:43,547 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 06:06:43,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 06:06:43,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 06:06:51,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 7.641s +2025-10-02 06:06:51,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 7.641s (avg: 2.547s/image) +2025-10-02 06:06:51,190 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 06:06:53,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:53,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:53,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:53,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:06:53,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:06:53,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:57,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:06:57,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:57,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:57,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:06:57,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:06:57,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:06:57,597 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:06:57,627 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:06:57,716 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.702 +2025-10-02 06:06:57,716 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:06:57,718 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:07:00,429 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:00,449 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(721, 721, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:00,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.010 +2025-10-02 06:07:00,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 06:07:00,526 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:07:00,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:00,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:00,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:00,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:07:00,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:07:00,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:05,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:05,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:05,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:05,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:07:05,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:07:05,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:06,586 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:06,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:06,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:06,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 06:07:06,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 06:07:06,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:07,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:07,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:07,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:07,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:07:07,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:07:07,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:08,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:08,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:08,101 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:08,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:07:08,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:07:08,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:08,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:08,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(721, 721, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:08,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.320 +2025-10-02 06:07:08,741 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 06:07:08,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:07:13,038 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:07:13,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:07:13,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:07:13,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 06:07:13,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 06:07:13,345 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:07:14,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:14,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:14,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:14,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:07:14,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:07:14,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:15,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:15,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:15,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:15,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:07:15,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:07:15,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:19,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:19,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:19,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:19,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.201s +2025-10-02 06:07:19,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.201s (avg: 0.201s/image) +2025-10-02 06:07:19,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:20,216 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:07:20,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:07:20,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:07:20,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 06:07:20,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-02 06:07:20,489 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:07:20,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:20,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:20,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:20,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:07:20,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:07:20,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:21,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:21,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:21,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:21,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 06:07:21,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 06:07:21,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:21,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:21,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:21,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:21,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:07:21,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:07:21,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:23,764 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:23,803 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:23,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.284 +2025-10-02 06:07:23,903 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-02 06:07:23,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 06:07:24,465 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:24,465 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:24,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:24,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:07:24,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:07:24,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:26,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:26,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:26,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:26,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:07:26,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:07:26,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:28,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:28,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:28,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:28,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:07:28,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:07:28,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:29,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:29,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:30,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:30,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:07:30,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:07:30,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:31,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:31,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:31,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:31,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:07:31,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:07:31,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:34,458 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:34,496 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:34,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.101 +2025-10-02 06:07:34,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-02 06:07:34,597 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 06:07:36,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:36,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:36,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:36,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:07:36,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:07:36,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:38,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:38,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:38,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:38,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 06:07:38,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 06:07:38,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:38,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:38,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:38,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:38,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:07:38,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:07:38,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:39,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:39,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:39,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:40,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:07:40,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:07:40,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:40,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:40,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:40,799 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:40,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:07:40,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:07:40,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:42,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:42,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:42,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:42,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:07:42,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:07:42,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:42,263 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:42,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:42,373 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.662 +2025-10-02 06:07:42,373 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:07:42,375 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:07:43,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:43,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:43,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:43,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:07:43,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:07:43,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:44,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:44,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:44,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:44,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:07:44,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:07:44,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:47,229 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:47,269 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:47,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.563 +2025-10-02 06:07:47,363 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 06:07:47,364 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 06:07:47,605 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:07:47,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:07:47,658 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:07:47,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 06:07:47,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 06:07:47,897 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:07:48,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:48,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:48,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:48,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:07:48,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:07:48,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:50,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:50,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:50,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:50,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:07:50,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:07:50,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:51,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:51,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:51,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:51,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:07:51,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:07:51,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:53,221 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:07:53,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:07:53,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:07:53,526 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.304s +2025-10-02 06:07:53,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.304s (avg: 0.152s/image) +2025-10-02 06:07:53,527 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:07:53,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:53,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:53,861 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:53,978 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:07:53,978 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:07:53,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:56,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:56,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:56,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:56,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 06:07:56,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 06:07:56,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:57,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:57,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:57,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:57,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:07:57,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:07:57,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:07:59,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:07:59,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:59,566 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:07:59,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:07:59,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:07:59,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:01,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:01,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:01,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:01,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:08:01,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:08:01,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:05,486 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:05,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:05,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:05,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:08:05,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:08:05,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:06,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:06,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:06,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:07,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:08:07,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:08:07,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:09,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:09,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:09,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:09,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:08:09,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:08:09,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:10,032 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:10,070 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:08:10,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.176 +2025-10-02 06:08:10,156 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:08:10,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:08:13,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:13,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:13,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:14,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:08:14,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:08:14,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:14,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:14,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:14,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:14,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:08:14,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:08:14,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:14,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:14,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:14,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:14,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.120s +2025-10-02 06:08:14,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.120s (avg: 0.120s/image) +2025-10-02 06:08:14,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:16,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:16,177 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:16,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:16,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:08:16,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:08:16,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:17,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:17,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:17,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:17,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:08:17,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:08:17,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:25,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:25,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:08:25,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.911 +2025-10-02 06:08:25,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:08:25,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:08:28,466 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:28,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:28,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:28,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:08:28,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:08:28,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:28,780 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:28,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:28,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:28,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:08:28,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:08:28,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:31,080 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:31,111 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:08:31,214 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.730 +2025-10-02 06:08:31,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +2025-10-02 06:08:31,216 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-02 06:08:32,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:32,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:32,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:32,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:08:32,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:08:32,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:35,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:35,835 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:08:35,923 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.165 +2025-10-02 06:08:35,923 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:08:35,925 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:08:35,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:35,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:35,976 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:36,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:08:36,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:08:36,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:39,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:39,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:39,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:40,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:08:40,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:08:40,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:43,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:43,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:43,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:43,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:08:43,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:08:43,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:45,269 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:08:45,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:08:45,327 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:08:45,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 06:08:45,556 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 06:08:45,557 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:08:47,413 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:47,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:08:47,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.294 +2025-10-02 06:08:47,549 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 06:08:47,550 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 06:08:47,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:47,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:47,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:47,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:08:47,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:08:47,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:49,173 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:08:49,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:08:49,235 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:08:49,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 06:08:49,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-02 06:08:49,463 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:08:52,844 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:08:52,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:08:52,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:08:53,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 06:08:53,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 06:08:53,132 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:08:54,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:54,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:54,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:55,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:08:55,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:08:55,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:55,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:55,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:55,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:55,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:08:55,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:08:55,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:56,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:56,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:56,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:56,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:08:56,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:08:56,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:58,292 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:58,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:58,338 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:58,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:08:58,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:08:58,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:08:58,853 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:08:58,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:58,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:08:59,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:08:59,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:08:59,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:00,965 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:00,986 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:01,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.590 +2025-10-02 06:09:01,073 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:09:01,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:09:01,685 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:01,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:01,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:01,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:09:01,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:09:01,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:02,424 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:02,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:02,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:02,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:09:02,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:09:02,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:03,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:03,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:03,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:03,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:09:03,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:09:03,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:03,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:03,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:03,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:04,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:09:04,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:09:04,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:06,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:06,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:06,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:06,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:09:06,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:09:06,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:09,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:09,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:09,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:09,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:09:09,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:09:09,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:10,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:10,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:10,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:10,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:09:10,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:09:10,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:12,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:12,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:12,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:12,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:09:12,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:09:12,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:13,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:13,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:13,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:13,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:09:13,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:09:13,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:15,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:15,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:15,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:15,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:09:15,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:09:15,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:16,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:16,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:16,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:16,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:09:16,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:09:16,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:18,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:18,055 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:18,095 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:18,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:09:18,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:09:18,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:21,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:21,330 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:21,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:21,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:09:21,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:09:21,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:22,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:22,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:22,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:22,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:09:22,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:09:22,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:23,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:23,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:23,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:23,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 06:09:23,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 06:09:23,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:23,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:23,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:23,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:23,826 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:09:23,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:09:23,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:24,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:24,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:24,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:24,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:09:24,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:09:24,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:26,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:26,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:26,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:26,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:09:26,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:09:26,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:28,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:28,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:28,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:28,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:09:28,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:09:28,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:31,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:31,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:31,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:31,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:09:31,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:09:31,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:31,644 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:31,671 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:31,761 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.812 +2025-10-02 06:09:31,762 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:09:31,763 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:09:33,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:33,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:33,262 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:33,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:09:33,373 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:09:33,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:33,594 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:33,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:33,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.096 +2025-10-02 06:09:33,710 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:09:33,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 06:09:35,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:35,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:35,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:36,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:09:36,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:09:36,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:36,887 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:36,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:36,981 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.576 +2025-10-02 06:09:36,981 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:09:36,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:09:38,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:38,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:38,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:38,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:09:38,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:09:38,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:38,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:38,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:38,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:39,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:09:39,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:09:39,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:41,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:41,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:41,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:41,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:09:41,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:09:41,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:42,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:42,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:42,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:42,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:09:42,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:09:42,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:42,173 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:42,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:42,275 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.212 +2025-10-02 06:09:42,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:09:42,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:09:42,709 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:09:42,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:09:42,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:09:42,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-02 06:09:42,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-02 06:09:42,974 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:09:43,371 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:09:43,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:09:43,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:09:43,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 06:09:43,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-02 06:09:43,652 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:09:47,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:47,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:47,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:47,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:09:47,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:09:47,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:48,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:48,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:48,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:48,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:09:48,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:09:48,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:49,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:49,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:49,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:49,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:09:49,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:09:49,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:50,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:50,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:50,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:50,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:09:50,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:09:50,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:51,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:51,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:51,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:51,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:09:51,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:09:51,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:52,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:52,069 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:52,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:52,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:09:52,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:09:52,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:52,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:52,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:52,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:52,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:09:52,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:09:52,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:53,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:53,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:53,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:53,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:09:53,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:09:53,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:53,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:53,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:53,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:54,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:09:54,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:09:54,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:56,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:56,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:56,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:56,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:09:56,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:09:56,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:57,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:57,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:57,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:57,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:09:57,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:09:57,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:09:58,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:09:58,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:58,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:59,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:09:59,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:09:59,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:03,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:03,079 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:03,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:03,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:10:03,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:10:03,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:06,866 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:10:06,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:06,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:07,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 06:10:07,154 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 06:10:07,154 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:10:07,319 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:10:07,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:07,378 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:07,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 06:10:07,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.137s/image) +2025-10-02 06:10:07,595 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:10:07,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:07,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:07,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:07,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:10:07,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:10:07,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:09,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:09,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:09,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:09,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:10:09,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:10:09,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:12,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:12,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:12,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:12,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:10:12,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:10:12,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:12,593 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:12,593 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:12,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:12,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:10:12,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:10:12,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:13,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:13,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:13,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:13,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 06:10:13,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 06:10:13,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:14,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:14,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:14,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:14,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:10:14,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:10:14,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:14,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:14,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:14,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:15,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:10:15,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:10:15,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:16,364 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:10:16,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:16,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:16,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 06:10:16,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 06:10:16,648 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:10:17,892 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:10:17,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:17,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:18,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 06:10:18,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 06:10:18,167 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:10:19,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:19,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:20,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:20,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:10:20,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:10:20,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:21,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:21,656 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:21,686 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:21,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:10:21,797 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:10:21,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:21,993 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:10:21,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:22,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:22,250 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 06:10:22,251 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.128s/image) +2025-10-02 06:10:22,251 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:10:22,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:22,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:22,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:22,739 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:10:22,739 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:10:22,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:24,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:24,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:24,451 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:24,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:10:24,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:10:24,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:25,080 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:10:25,100 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:10:25,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.371 +2025-10-02 06:10:25,177 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 06:10:25,177 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:10:27,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:27,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:27,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:27,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:10:27,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:10:27,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:28,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:28,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:28,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:28,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:10:28,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:10:28,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:28,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:28,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:28,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:28,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:10:28,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:10:28,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:28,771 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:28,772 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:28,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:28,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:10:28,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:10:28,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:29,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:29,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:29,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:29,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:10:29,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:10:29,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:31,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:31,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:31,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:31,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:10:31,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:10:31,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:31,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:31,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:31,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:31,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:10:31,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:10:31,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:34,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:34,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:34,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:34,956 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:10:34,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:10:34,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:35,652 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:10:35,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:35,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:35,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 06:10:35,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-02 06:10:35,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:10:36,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:36,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:36,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:36,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:10:36,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:10:36,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:37,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:37,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:37,328 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:37,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:10:37,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:10:37,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:38,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:38,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:38,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:38,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:10:38,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:10:38,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:39,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:39,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:39,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:40,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:10:40,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:10:40,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:43,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:43,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:43,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:43,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:10:43,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:10:43,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:47,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:47,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:47,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:47,439 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:10:47,439 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:10:47,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:49,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:49,299 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:49,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:49,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:10:49,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:10:49,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:50,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:50,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:50,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:50,708 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:10:50,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:10:50,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:52,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:52,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:52,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:52,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:10:52,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:10:52,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:52,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:52,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:52,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:52,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:10:52,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:10:52,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:54,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:54,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:54,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:54,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:10:54,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:10:54,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:55,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:55,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:55,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:55,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:10:55,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:10:55,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:57,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:10:57,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:57,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:57,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:10:57,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:10:57,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:10:58,330 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:10:58,358 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:10:58,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.507 +2025-10-02 06:10:58,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 06:10:58,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 06:10:58,788 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:10:58,812 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:10:58,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.292 +2025-10-02 06:10:58,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +2025-10-02 06:10:58,914 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 06:11:02,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:02,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:02,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:02,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:11:02,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:11:02,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:02,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:11:02,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:11:02,887 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.057 +2025-10-02 06:11:02,888 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 06:11:02,889 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:11:04,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:04,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:04,768 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:04,896 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:11:04,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:11:04,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:06,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:06,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:06,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:06,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:11:06,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:11:06,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:06,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:06,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:06,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:06,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:11:06,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:11:06,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:07,191 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:11:07,215 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:11:07,299 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.914 +2025-10-02 06:11:07,299 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:11:07,301 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:11:07,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:07,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:07,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:07,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:11:07,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:11:07,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:08,096 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:08,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:08,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:08,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 06:11:08,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 06:11:08,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:11,705 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:11,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:11,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:11,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:11:11,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:11:11,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:14,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:14,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:14,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:15,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:11:15,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:11:15,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:16,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:16,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:16,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:17,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 06:11:17,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 06:11:17,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:19,627 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:19,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:19,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:19,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:11:19,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:11:19,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:20,724 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:20,725 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:20,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:20,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:11:20,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:11:20,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:23,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:23,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:23,931 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:24,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:11:24,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:11:24,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:26,336 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:11:26,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:26,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:26,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 06:11:26,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 06:11:26,620 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:11:28,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:28,004 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:28,036 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:28,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:11:28,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:11:28,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:30,518 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:30,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:30,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:30,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:11:30,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:11:30,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:31,987 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:11:31,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:32,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:32,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 06:11:32,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-02 06:11:32,281 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:11:33,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:33,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:33,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:33,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:11:33,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:11:33,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:34,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:34,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:34,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:35,027 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:11:35,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:11:35,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:35,528 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:35,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:35,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:35,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:11:35,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:11:35,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:37,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:37,617 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:37,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:37,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:11:37,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:11:37,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:37,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:37,983 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:38,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:38,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:11:38,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:11:38,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:40,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:40,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:40,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:40,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:11:40,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:11:40,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:43,159 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:11:43,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:43,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:43,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 06:11:43,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 06:11:43,445 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:11:43,866 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:11:43,866 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:43,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:44,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 06:11:44,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 06:11:44,137 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:11:45,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:45,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:45,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:45,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:11:45,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:11:45,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:46,284 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:11:46,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:46,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:46,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 06:11:46,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-02 06:11:46,575 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:11:47,235 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:11:47,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:47,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:47,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 06:11:47,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 06:11:47,521 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:11:50,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:50,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:50,381 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:50,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:11:50,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:11:50,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:51,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:51,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:51,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:51,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:11:51,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:11:51,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:51,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:51,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:51,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:51,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:11:51,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:11:51,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:52,132 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:52,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:52,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:52,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:11:52,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:11:52,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:52,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:52,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:52,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:52,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:11:52,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:11:52,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:53,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:53,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:53,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:53,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:11:53,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:11:53,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:54,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:54,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:54,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:54,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:11:54,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:11:54,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:56,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:56,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:56,091 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:56,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:11:56,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:11:56,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:57,843 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:57,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:57,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:58,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:11:58,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:11:58,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:11:59,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:11:59,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:59,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:59,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:11:59,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:11:59,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:00,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:00,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:00,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:00,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:12:00,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:12:00,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:01,144 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:12:01,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:12:01,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:12:01,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.314s +2025-10-02 06:12:01,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.314s (avg: 0.157s/image) +2025-10-02 06:12:01,459 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:12:02,326 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:02,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:02,429 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.583 +2025-10-02 06:12:02,429 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:12:02,432 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:12:04,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:04,077 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:04,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:04,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:12:04,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:12:04,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:05,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:05,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:05,283 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:05,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:12:05,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:12:05,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:05,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:05,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:05,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:05,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:12:05,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:12:05,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:05,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:05,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:05,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:06,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:12:06,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:12:06,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:06,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:06,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:06,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:06,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:12:06,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:12:06,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:08,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:08,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:08,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:08,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:12:08,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:12:08,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:08,755 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:08,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:08,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:08,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:12:08,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:12:08,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:09,178 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:09,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:09,282 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.223 +2025-10-02 06:12:09,282 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:12:09,284 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:12:10,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:10,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:10,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:10,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:12:10,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:12:10,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:10,852 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:10,853 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:10,885 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:11,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:12:11,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:12:11,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:13,473 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:13,493 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:13,585 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.947 +2025-10-02 06:12:13,586 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:12:13,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:12:13,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:13,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:13,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:13,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:12:13,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:12:13,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:16,967 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:16,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:17,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:17,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:12:17,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:12:17,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:17,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:17,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:17,488 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:17,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 06:12:17,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 06:12:17,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:18,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:18,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:18,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:18,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.213s +2025-10-02 06:12:18,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.213s (avg: 0.213s/image) +2025-10-02 06:12:18,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:19,685 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:12:19,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:12:19,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:12:19,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 06:12:19,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 06:12:19,971 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:12:24,156 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:24,180 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:24,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.152 +2025-10-02 06:12:24,267 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:12:24,269 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:12:24,563 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:24,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:24,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:24,745 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:12:24,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:12:24,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:24,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:24,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:24,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:25,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:12:25,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:12:25,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:25,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:25,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:25,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:25,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:12:25,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:12:25,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:26,270 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:26,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:26,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:26,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:12:26,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:12:26,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:27,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:27,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:27,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:28,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:12:28,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:12:28,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:28,214 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:28,244 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:28,352 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.525 +2025-10-02 06:12:28,352 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +2025-10-02 06:12:28,354 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-02 06:12:30,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:30,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:30,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:30,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:12:30,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:12:30,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:31,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:31,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:31,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:31,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 06:12:31,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 06:12:31,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:32,488 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:32,525 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:32,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.851 +2025-10-02 06:12:32,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +2025-10-02 06:12:32,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 06:12:37,242 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:37,268 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:37,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=206.728 +2025-10-02 06:12:37,364 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 06:12:37,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 06:12:37,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:37,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:37,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:38,065 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:12:38,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:12:38,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:40,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:40,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:40,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:40,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:12:40,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:12:40,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:45,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:45,620 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:45,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:45,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:12:45,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:12:45,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:50,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:50,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:50,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:50,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:12:50,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:12:50,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:56,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:12:56,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:56,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:56,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:12:56,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:12:56,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:12:58,336 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:58,359 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:58,454 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=210.058 +2025-10-02 06:12:58,454 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 06:12:58,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 06:12:58,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:58,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:59,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.296 +2025-10-02 06:12:59,070 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:12:59,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:13:00,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:00,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:00,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:00,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:13:00,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:13:00,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:08,020 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:13:08,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:13:08,072 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:13:08,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 06:13:08,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-02 06:13:08,310 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:13:11,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:11,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:12,009 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:12,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:13:12,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:12,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:13,123 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:13:13,142 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:13:13,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.501 +2025-10-02 06:13:13,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:13:13,233 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:13:17,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:17,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:18,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:18,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:13:18,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:13:18,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:21,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:21,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:21,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:21,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:13:21,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:13:21,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:22,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:22,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:22,353 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:22,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:13:22,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:13:22,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:26,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:26,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:26,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:26,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:13:26,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:13:26,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:27,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:27,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:27,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:27,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:13:27,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:13:27,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:29,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:29,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:29,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:29,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:13:29,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:13:29,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:30,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:30,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:30,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:30,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:13:30,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:30,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:32,673 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:32,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:32,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:32,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:13:32,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:13:32,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:33,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:33,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:33,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:33,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:13:33,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:13:33,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:33,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:33,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:33,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:33,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:13:33,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:13:33,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:36,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:36,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:36,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:36,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:13:36,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:13:36,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:37,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:37,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:37,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:37,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:13:37,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:37,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:37,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:37,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:37,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:37,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:13:37,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:13:37,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:39,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:39,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:39,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:40,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:13:40,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:13:40,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:41,688 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:13:41,713 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:13:41,795 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.916 +2025-10-02 06:13:41,795 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 06:13:41,797 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:13:42,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:42,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:42,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:43,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:13:43,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:13:43,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:44,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:44,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:44,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:44,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:13:44,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:44,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:45,357 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:45,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:45,403 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:45,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:13:45,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:13:45,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:46,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:46,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:46,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:46,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:13:46,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:13:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:47,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:47,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:47,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:48,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:13:48,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:13:48,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:48,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:48,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:48,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:48,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:13:48,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:13:48,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:48,718 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:48,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:48,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:48,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:13:48,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:48,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:51,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:51,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:51,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:51,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:13:51,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:13:51,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:55,268 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:55,269 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:55,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:55,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:13:55,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:13:55,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:55,603 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:13:55,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:13:55,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:13:55,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 06:13:55,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-02 06:13:55,871 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:13:56,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:56,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:56,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:56,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:13:56,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:13:56,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:13:58,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:13:58,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:58,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:58,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:13:58,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:13:58,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:00,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:00,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:00,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:00,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:14:00,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:14:00,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:02,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:02,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:02,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:02,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:14:02,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:14:02,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:03,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:03,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:03,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:03,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:14:03,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:14:03,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:05,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:05,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:05,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:05,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:14:05,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:14:05,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:05,476 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:14:05,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:14:05,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.975 +2025-10-02 06:14:05,584 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:14:05,586 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:14:05,825 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:05,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:05,851 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:05,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:14:05,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:14:05,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:06,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:06,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:06,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:06,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:14:06,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:14:06,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:06,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:06,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:06,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:07,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:14:07,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:14:07,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:07,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:07,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:07,847 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:07,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 06:14:07,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 06:14:07,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:08,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:14:08,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(795, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:14:09,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.954 +2025-10-02 06:14:09,035 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:14:09,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:14:09,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:09,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:09,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:09,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:14:09,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:14:09,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:11,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:11,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:11,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:11,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:14:11,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:14:11,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:12,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:12,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:12,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:12,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:14:12,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:14:12,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:13,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:13,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:13,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:13,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:14:13,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:14:13,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:13,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:13,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:13,616 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:13,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:14:13,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:14:13,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:15,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:15,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:15,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:15,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:14:15,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:14:15,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:19,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:19,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:19,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:19,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.202s +2025-10-02 06:14:19,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.202s (avg: 0.202s/image) +2025-10-02 06:14:19,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:21,339 - app.core.batch_manager - INFO - Creating a new batch with 4 jobs. +2025-10-02 06:14:21,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 4). VRAM: 0.0 GB +2025-10-02 06:14:21,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 4개 이미지 인페인팅 수행 +2025-10-02 06:14:21,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 4). VRAM: 0.0 GB | Duration: 0.551s +2025-10-02 06:14:21,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 4 processed in 0.551s (avg: 0.138s/image) +2025-10-02 06:14:21,892 - app.core.batch_manager - INFO - Successfully processed batch of 4 jobs. +2025-10-02 06:14:23,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:23,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:23,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:23,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:14:23,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:14:23,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:25,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:25,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:26,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:26,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:14:26,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:14:26,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:26,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:26,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:26,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:26,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:14:26,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:14:26,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:27,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:27,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:27,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:27,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:14:27,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:14:27,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:28,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:28,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:28,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:28,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:14:28,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:14:28,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:30,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:30,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:30,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:30,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:14:30,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:14:30,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:30,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:30,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:31,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:31,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:14:31,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:14:31,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:31,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:31,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:31,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:31,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 06:14:31,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 06:14:31,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:31,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:31,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:31,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:31,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:14:31,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:14:31,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:32,785 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:14:32,807 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:14:32,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.946 +2025-10-02 06:14:32,882 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 06:14:32,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:14:36,400 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:36,401 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:36,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:36,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:14:36,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:14:36,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:37,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:37,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:37,590 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:37,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:14:37,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:14:37,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:37,876 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:14:37,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:14:37,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:14:38,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 06:14:38,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 06:14:38,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:14:38,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:38,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:38,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:38,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:14:38,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:14:38,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:41,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:41,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:41,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:41,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:14:41,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:14:41,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:42,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:42,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:42,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:42,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.208s +2025-10-02 06:14:42,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image) +2025-10-02 06:14:42,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:42,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:42,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:42,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:42,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:14:42,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:14:42,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:43,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:43,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:43,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:43,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:14:43,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:14:43,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:43,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:43,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:43,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:43,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:14:43,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:14:43,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:45,618 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:14:45,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:14:45,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:14:45,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 06:14:45,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 06:14:45,917 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:14:47,387 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:14:47,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:14:47,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:14:47,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 06:14:47,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 06:14:47,650 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:14:48,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:48,977 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:49,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:49,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:14:49,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:14:49,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:51,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:51,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:51,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:51,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:14:51,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:14:51,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:52,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:52,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:52,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:52,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:14:52,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:14:52,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:52,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:52,895 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:52,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:53,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:14:53,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:14:53,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:53,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:53,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:53,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:53,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:14:53,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:14:53,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:53,870 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:14:53,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:14:53,939 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:14:54,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.319s +2025-10-02 06:14:54,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.319s (avg: 0.160s/image) +2025-10-02 06:14:54,191 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:14:55,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:55,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:55,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:55,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:14:55,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:14:55,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:56,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:56,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:56,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:56,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:14:56,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:14:56,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:14:56,524 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 06:14:56,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 06:14:56,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 06:14:56,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.404s +2025-10-02 06:14:56,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.404s (avg: 0.135s/image) +2025-10-02 06:14:56,930 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 06:14:59,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:14:59,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:59,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:59,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:14:59,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:14:59,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:01,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:01,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:01,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:01,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:15:01,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:15:01,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:02,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:02,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:02,430 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:02,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:15:02,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:15:02,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:03,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:03,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:03,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:03,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:15:03,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:15:03,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:04,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:04,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:04,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:04,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:15:04,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:15:04,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:04,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:15:04,628 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:15:04,711 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.548 +2025-10-02 06:15:04,712 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:15:04,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 06:15:05,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:05,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:05,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:05,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:15:05,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:15:05,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:05,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:05,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:05,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:05,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:15:05,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:05,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:05,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:05,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:05,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:06,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:15:06,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:15:06,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:06,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:06,521 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:06,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:06,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:15:06,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:15:06,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:07,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:07,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:07,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:07,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:15:07,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:15:07,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:08,144 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:15:08,173 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:15:08,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.869 +2025-10-02 06:15:08,250 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 06:15:08,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 06:15:08,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:08,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:08,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:08,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:15:08,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:15:08,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:11,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:11,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:11,158 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:11,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:15:11,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:15:11,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:11,834 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:15:11,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:15:11,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.978 +2025-10-02 06:15:11,932 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 06:15:11,932 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:15:12,128 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:12,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:12,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:12,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:15:12,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:15:12,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:12,561 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:15:12,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:15:12,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:12,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 06:15:12,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 06:15:12,858 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:15:15,484 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:15,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:15,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:15,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:15:15,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:15:15,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:15,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:15,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:15,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:15,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 06:15:15,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 06:15:15,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:16,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:16,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:16,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:16,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:15:16,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:15:16,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:18,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:18,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:18,303 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:18,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:15:18,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:18,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:20,992 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:20,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:21,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:21,163 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:15:21,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:15:21,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:21,521 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:21,522 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:21,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:21,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:15:21,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:15:21,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:22,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:22,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:22,891 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:23,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:15:23,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:15:23,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:23,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:23,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:23,519 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:23,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-02 06:15:23,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-02 06:15:23,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:24,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:24,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:24,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:24,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:15:24,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:24,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:25,232 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:25,233 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:25,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:25,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:15:25,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:25,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:25,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:25,765 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:25,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:25,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:15:25,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:15:25,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:29,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:29,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:29,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:29,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:15:29,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:15:29,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:29,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:29,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:29,863 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:29,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:15:29,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:15:29,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:33,893 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:33,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:33,930 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:34,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:15:34,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:15:34,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:34,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:34,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:34,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:34,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:15:34,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:15:34,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:36,110 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:36,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:36,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:36,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:15:36,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:15:36,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:36,761 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:36,762 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:36,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:36,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:15:36,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:15:36,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:37,289 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:15:37,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:15:37,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:37,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 06:15:37,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 06:15:37,562 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:15:38,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:38,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:38,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:39,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:15:39,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:15:39,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:40,699 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:15:40,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:15:40,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:40,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 06:15:40,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.284s (avg: 0.142s/image) +2025-10-02 06:15:40,985 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:15:41,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:41,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:41,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:41,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:15:41,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:41,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:41,714 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:15:41,737 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:15:41,819 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.803 +2025-10-02 06:15:41,820 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:15:41,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:15:42,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:42,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:42,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:42,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:15:42,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:15:42,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:43,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:43,324 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:43,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:43,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:15:43,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:15:43,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:43,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:43,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:43,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:43,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:15:43,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:15:43,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:45,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:45,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:45,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:45,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:15:45,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:15:45,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:45,565 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:15:45,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:15:45,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:45,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 06:15:45,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-02 06:15:45,853 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:15:47,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:47,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:47,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:47,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:15:47,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:15:47,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:48,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:48,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:48,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:48,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:15:48,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:15:48,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:48,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:48,606 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:48,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:48,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:15:48,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:15:48,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:48,920 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:48,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:48,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:49,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:15:49,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:15:49,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:49,897 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:15:49,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:15:49,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:50,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 06:15:50,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 06:15:50,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:15:50,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:50,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:50,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:50,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:15:50,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:15:50,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:53,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:53,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:53,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:53,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:15:53,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:15:53,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:54,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:54,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:55,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:55,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:15:55,131 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:15:55,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:55,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:55,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:55,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:55,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:15:55,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:15:55,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:56,205 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:56,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:56,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:56,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:15:56,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:15:56,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:58,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:58,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:58,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:58,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:15:58,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:15:58,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:58,733 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:58,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:58,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:58,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:15:58,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:15:58,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:15:59,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:15:59,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:59,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:59,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 06:15:59,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 06:15:59,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:00,428 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:16:00,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:16:00,491 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:16:00,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 06:16:00,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 06:16:00,725 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:16:01,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:01,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:01,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:01,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:16:01,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:16:01,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:05,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:05,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:05,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:05,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:16:05,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:05,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:06,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:06,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:06,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:06,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:16:06,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:16:06,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:08,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:08,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:08,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:09,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:16:09,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:16:09,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:09,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:09,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:09,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:09,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:16:09,703 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:16:09,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:11,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:11,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:11,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:11,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:16:11,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:11,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:13,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:13,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:13,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:14,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:16:14,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:16:14,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:14,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:14,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:14,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:14,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:16:14,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:16:14,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:16,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:16,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:16,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:16,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:16:16,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:16:16,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:16,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:16,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:16,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:17,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 06:16:17,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 06:16:17,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:19,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:19,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:19,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:19,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:16:19,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:16:19,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:22,011 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:22,012 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:22,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:22,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:16:22,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:16:22,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:22,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:22,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:22,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:23,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:16:23,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:23,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:23,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:23,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:23,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:23,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:16:23,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:16:23,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:25,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:25,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:25,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:25,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:16:25,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:16:25,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:26,374 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:26,374 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:26,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:26,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:16:26,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:16:26,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:30,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:30,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:30,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:30,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:16:30,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:16:30,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:34,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:34,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:34,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:34,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:16:34,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:16:34,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:34,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:34,705 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:34,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:34,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:16:34,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:16:34,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:35,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:35,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:35,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:35,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:16:35,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:16:35,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:38,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:38,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:38,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:38,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:16:38,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:38,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:39,166 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:16:39,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:16:39,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:16:39,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 06:16:39,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-02 06:16:39,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:16:44,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:44,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:44,202 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:44,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:16:44,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:16:44,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:44,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:44,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:44,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:44,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:16:44,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:16:44,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:45,280 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:16:45,302 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:16:45,391 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.359 +2025-10-02 06:16:45,391 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:16:45,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:16:45,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:45,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:45,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:45,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:16:45,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:16:45,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:48,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:48,347 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:48,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:48,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:16:48,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:16:48,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:49,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:49,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:49,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:49,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:16:49,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:16:49,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:49,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:49,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:49,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:49,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:16:49,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:16:49,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:51,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:51,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:51,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:51,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:16:51,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:16:51,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:52,112 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:16:52,141 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:16:52,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.383 +2025-10-02 06:16:52,231 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:16:52,233 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:16:53,230 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:53,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:53,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:53,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:16:53,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:16:53,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:54,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:54,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:54,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:54,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:16:54,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:54,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:55,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:55,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:55,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:55,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:16:55,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:16:55,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:58,013 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:58,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:58,044 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:58,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:16:58,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:16:58,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:16:58,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:16:58,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:16:58,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:16:58,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:16:58,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:16:58,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:00,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:00,760 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:00,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:00,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:17:00,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:17:00,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:05,661 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:05,680 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:17:05,765 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.196 +2025-10-02 06:17:05,766 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:17:05,768 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:17:17,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:17,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:17,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:17,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:17:17,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:17:17,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:18,721 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:18,756 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:17:18,852 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.529 +2025-10-02 06:17:18,852 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.095s +2025-10-02 06:17:18,854 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 06:17:19,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:19,957 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:20,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:20,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 06:17:20,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 06:17:20,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:22,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:22,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:22,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:23,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:17:23,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:17:23,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:23,374 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:23,399 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:17:23,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.163 +2025-10-02 06:17:23,494 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 06:17:23,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 06:17:27,107 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:27,127 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:17:27,219 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.468 +2025-10-02 06:17:27,219 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:17:27,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:17:28,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:28,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:28,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:28,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +2025-10-02 06:17:28,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-02 06:17:28,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:29,173 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:29,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:29,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:29,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:17:29,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:17:29,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:30,748 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:17:30,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:17:30,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:17:31,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 06:17:31,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 06:17:31,029 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:17:31,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:31,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:31,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:32,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:17:32,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:17:32,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:34,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:34,354 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:34,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:34,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:17:34,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:17:34,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:35,474 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:35,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:35,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:35,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:17:35,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:17:35,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:38,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:38,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:38,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:39,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:17:39,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:17:39,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:40,736 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:40,737 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:40,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:40,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:17:40,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:17:40,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:42,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:42,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:42,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:42,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:17:42,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:17:42,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:43,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:43,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:43,201 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:43,335 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:17:43,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:17:43,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:44,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:44,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:44,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:44,528 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:17:44,528 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:17:44,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:44,551 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:44,570 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:17:44,660 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.077 +2025-10-02 06:17:44,661 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:17:44,663 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 06:17:45,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:45,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:45,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:45,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:17:45,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:17:45,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:47,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:47,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:47,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:47,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:17:47,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:17:47,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:48,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:48,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:48,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:48,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:17:48,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:17:48,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:52,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:52,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:52,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:52,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:17:52,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:17:52,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:53,372 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:53,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:53,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:53,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:17:53,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:17:53,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:55,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:55,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:55,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:55,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:17:55,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:17:55,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:56,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:56,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:56,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:56,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:17:56,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:17:56,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:58,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:17:58,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:17:58,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:17:58,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 06:17:58,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 06:17:58,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:17:59,794 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:59,824 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:17:59,925 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.385 +2025-10-02 06:17:59,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-02 06:17:59,926 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 06:18:00,211 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:00,232 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:00,320 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.353 +2025-10-02 06:18:00,321 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:18:00,321 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:18:04,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:04,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:04,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:04,413 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:18:04,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:18:04,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:05,116 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:05,132 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:05,218 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.777 +2025-10-02 06:18:05,219 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:18:05,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:18:05,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:05,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:05,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:05,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.191s +2025-10-02 06:18:05,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.191s (avg: 0.191s/image) +2025-10-02 06:18:05,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:10,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:10,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:11,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:11,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:18:11,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:18:11,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:14,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:14,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:14,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:14,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:18:14,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:18:14,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:14,852 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:14,881 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:14,968 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.237 +2025-10-02 06:18:14,968 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:18:14,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:18:15,045 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:15,060 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:15,129 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=227.040 +2025-10-02 06:18:15,130 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-02 06:18:15,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 06:18:15,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:15,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:15,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:15,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:18:15,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:18:15,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:17,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:17,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:17,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:17,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:18:17,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:18:17,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:17,949 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:17,985 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:18,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.242 +2025-10-02 06:18:18,064 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:18:18,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:18:18,591 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:18,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:18,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:18,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:18:18,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:18:18,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:20,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:20,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:20,634 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:20,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.208s +2025-10-02 06:18:20,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image) +2025-10-02 06:18:20,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:21,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:21,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:21,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:21,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:18:21,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:18:21,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:21,394 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:21,410 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:21,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.396 +2025-10-02 06:18:21,490 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 06:18:21,492 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 06:18:21,631 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:18:21,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:18:21,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:18:21,903 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 06:18:21,903 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 06:18:21,903 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:18:22,601 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:22,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:22,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:22,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:18:22,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:18:22,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:25,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:25,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:25,807 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:25,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:18:25,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:18:25,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:29,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:29,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:29,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:29,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:18:29,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:18:29,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:29,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:29,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:29,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:30,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:18:30,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:18:30,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:30,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:30,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:30,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:30,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:18:30,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:18:30,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:30,606 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 06:18:30,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 06:18:30,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 06:18:30,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.385s +2025-10-02 06:18:30,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.385s (avg: 0.128s/image) +2025-10-02 06:18:30,992 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 06:18:33,458 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:33,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:33,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:33,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:18:33,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:18:33,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:35,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:35,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:35,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:35,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:18:35,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:18:35,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:35,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:35,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:35,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:36,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:18:36,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:18:36,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:37,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:37,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:37,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:37,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:18:37,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:18:37,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:38,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:38,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:38,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:38,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:18:38,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:18:38,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:39,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:39,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:39,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:39,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:18:39,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:18:39,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:41,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:41,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:41,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:41,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:18:41,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:18:41,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:41,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:41,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:42,017 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:42,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:18:42,135 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:18:42,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:43,032 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:43,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:43,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:43,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:18:43,203 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:18:43,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:44,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:44,387 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:44,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.892 +2025-10-02 06:18:44,475 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:18:44,476 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:18:45,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:45,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:45,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:45,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.197s +2025-10-02 06:18:45,393 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.197s (avg: 0.197s/image) +2025-10-02 06:18:45,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:45,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:45,901 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:45,947 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:46,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:18:46,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:18:46,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:46,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:46,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:46,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:46,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:18:46,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:18:46,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:46,500 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:46,500 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:46,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:46,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:18:46,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:18:46,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:47,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:47,485 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:47,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:47,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:18:47,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:18:47,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:49,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:49,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:49,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:49,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:18:49,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:18:49,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:50,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:50,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:50,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:50,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:18:50,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:18:50,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:50,369 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:50,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:50,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:50,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:18:50,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:18:50,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:51,042 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:51,042 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:51,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:51,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:18:51,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:18:51,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:51,719 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:18:51,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:18:51,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:18:52,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 06:18:52,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-02 06:18:52,009 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:18:52,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:52,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:52,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:52,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:18:52,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:18:52,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:57,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:57,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:57,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:57,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 06:18:57,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 06:18:57,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:57,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:57,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:57,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:57,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:18:57,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:18:57,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:18:57,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:18:57,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:18:57,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:58,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:18:58,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:18:58,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:00,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:00,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:00,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:00,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:19:00,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:19:00,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:01,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:01,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:01,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:01,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:19:01,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:19:01,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:03,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:03,329 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:03,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:03,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:19:03,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:19:03,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:06,108 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:06,109 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:06,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:06,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:19:06,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:19:06,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:07,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:07,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:07,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:07,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:19:07,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:19:07,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:10,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:10,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:10,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:10,197 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:19:10,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:19:10,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:13,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:13,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:13,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:13,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:19:13,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:19:13,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:14,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:19:14,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:19:14,846 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.984 +2025-10-02 06:19:14,846 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 06:19:14,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:19:18,237 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:18,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:18,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:18,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:19:18,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:19:18,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:18,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:19:18,936 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:19:19,027 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.524 +2025-10-02 06:19:19,027 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:19:19,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:19:19,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:19,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:19,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:19,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:19:19,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:19:19,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:20,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:20,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:20,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:20,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:19:20,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:19:20,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:20,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:20,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:20,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:20,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:19:20,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:19:20,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:22,305 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:22,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:22,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:22,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:19:22,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:19:22,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:23,795 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:23,795 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:23,832 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:23,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:19:23,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:19:23,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:24,235 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:19:24,258 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:19:24,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.045 +2025-10-02 06:19:24,336 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 06:19:24,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 06:19:25,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:25,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:25,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:25,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:19:25,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:19:25,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:25,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:25,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:25,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:25,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:19:25,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:19:25,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:25,850 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:25,851 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:25,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:26,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:19:26,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:19:26,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:26,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:26,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:26,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:26,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:19:26,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:19:26,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:27,740 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:27,740 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:27,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:27,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:19:27,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:19:27,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:30,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:30,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:30,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:30,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:19:30,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:19:30,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:30,628 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:19:30,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:19:30,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:19:30,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +2025-10-02 06:19:30,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +2025-10-02 06:19:30,963 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:19:31,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:19:31,042 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:19:31,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.616 +2025-10-02 06:19:31,122 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:19:31,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 06:19:31,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:31,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:31,505 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:31,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:19:31,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:19:31,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:32,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:32,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:32,200 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:32,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:19:32,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:19:32,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:35,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:35,280 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:35,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:35,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:19:35,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:19:35,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:37,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:37,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:37,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:37,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 06:19:37,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 06:19:37,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:40,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:40,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:40,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:40,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:19:40,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:19:40,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:40,548 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:19:40,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:19:40,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:19:40,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 06:19:40,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 06:19:40,832 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:19:41,061 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:19:41,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:19:41,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:19:41,358 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 06:19:41,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 06:19:41,359 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:19:47,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:47,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:47,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:47,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:19:47,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:19:47,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:48,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:48,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:48,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:48,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:19:48,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:19:48,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:48,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:48,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:48,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:48,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:19:48,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:19:48,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:49,559 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:19:49,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:19:49,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:19:49,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 06:19:49,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 06:19:49,848 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:19:53,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:53,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:53,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:53,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:19:53,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:19:53,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:55,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:55,800 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:55,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:55,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:19:55,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:19:55,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:56,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:19:56,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:19:56,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:19:56,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:19:56,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:19:56,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:19:58,417 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:19:58,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:19:58,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:19:58,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 06:19:58,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.296s (avg: 0.148s/image) +2025-10-02 06:19:58,714 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:20:00,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:00,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:00,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:00,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:20:00,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:20:00,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:02,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:02,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:02,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:02,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:20:02,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:20:02,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:03,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:03,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:03,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:03,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:20:03,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:20:03,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:03,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:03,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:03,883 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:04,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:20:04,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:20:04,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:04,545 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:04,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:04,587 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:04,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:20:04,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:20:04,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:05,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:05,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:05,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:05,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:20:05,450 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:20:05,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:09,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:09,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:09,721 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:09,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:20:09,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:20:09,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:10,395 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:20:10,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:20:10,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:20:10,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 06:20:10,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.141s/image) +2025-10-02 06:20:10,677 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:20:10,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:10,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:10,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:11,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:20:11,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:20:11,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:13,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:13,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:13,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:13,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:20:13,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:20:13,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:15,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:15,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:15,672 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:15,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:20:15,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:20:15,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:17,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:17,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:17,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:17,839 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:20:17,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:20:17,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:18,167 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:18,168 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:18,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:18,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:20:18,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:20:18,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:19,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:19,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:19,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:19,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:20:19,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:20:19,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:19,943 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:19,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:19,975 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:20,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:20:20,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:20:20,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:24,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:24,706 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:24,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:24,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:20:24,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:20:24,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:25,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:25,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:25,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:25,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:20:25,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:20:25,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:25,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:25,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:25,707 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:25,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:20:25,830 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:20:25,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:29,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:29,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:29,769 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:29,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:20:29,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:20:29,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:31,133 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:31,134 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:31,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:31,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:20:31,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:20:31,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:36,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:36,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:36,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:36,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:20:36,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:20:36,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:40,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:40,379 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:40,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:40,520 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:20:40,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:20:40,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:42,044 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:20:42,073 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:20:42,165 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.908 +2025-10-02 06:20:42,165 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:20:42,168 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 06:20:42,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:42,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:42,669 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:42,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:20:42,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:20:42,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:44,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:44,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:44,486 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:44,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:20:44,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:20:44,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:46,676 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:20:46,704 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:20:46,802 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.861 +2025-10-02 06:20:46,803 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.097s +2025-10-02 06:20:46,804 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +2025-10-02 06:20:48,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:48,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:48,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:48,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:20:48,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:20:48,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:49,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:49,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:49,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:49,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:20:49,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:20:49,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:50,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:50,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:50,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:51,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:20:51,072 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:20:51,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:53,958 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:20:53,987 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:20:54,089 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.755 +2025-10-02 06:20:54,090 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +2025-10-02 06:20:54,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-02 06:20:55,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:55,750 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:55,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:55,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:20:55,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:20:55,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:56,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:56,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:56,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:56,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:20:56,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:20:56,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:20:58,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:20:58,126 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:20:58,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:58,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:20:58,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:20:58,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:02,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:02,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:02,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:02,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:21:02,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:21:02,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:04,206 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:04,238 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:04,324 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.593 +2025-10-02 06:21:04,324 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:21:04,326 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:21:05,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:05,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:05,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:05,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:21:05,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:21:05,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:07,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:07,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:07,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:07,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:21:07,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:21:07,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:09,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:09,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:09,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:09,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:21:09,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:21:09,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:09,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:09,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:09,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:10,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:21:10,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:21:10,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:12,612 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:12,646 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:12,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.278 +2025-10-02 06:21:12,734 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:21:12,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:21:13,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:13,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:13,081 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:13,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:21:13,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:21:13,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:13,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:13,690 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:13,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:13,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-02 06:21:13,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-02 06:21:13,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:14,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:14,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:14,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:15,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:21:15,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:21:15,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:19,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:19,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:19,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:19,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.190s +2025-10-02 06:21:19,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.190s (avg: 0.190s/image) +2025-10-02 06:21:19,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:21,074 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:21,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:21,205 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.443 +2025-10-02 06:21:21,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 06:21:21,207 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 06:21:23,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:23,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:23,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:23,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:21:23,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:21:23,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:24,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:24,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:24,214 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:24,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:21:24,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:21:24,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:24,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:24,890 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:24,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:25,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:21:25,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:21:25,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:25,154 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:25,174 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:25,247 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.600 +2025-10-02 06:21:25,247 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 06:21:25,247 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 06:21:25,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:25,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:25,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:25,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:21:25,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:21:25,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:26,128 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:26,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:26,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.452 +2025-10-02 06:21:26,236 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:21:26,237 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:21:26,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:26,484 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:26,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:26,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:21:26,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:21:26,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:30,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:30,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:30,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:30,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:21:30,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:21:30,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:31,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:31,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:31,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:31,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:21:31,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:21:31,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:33,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:33,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:33,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:33,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:21:33,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:21:33,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:33,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:33,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:33,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:34,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:21:34,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:21:34,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:34,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:34,110 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:34,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.637 +2025-10-02 06:21:34,187 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 06:21:34,189 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:21:34,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:34,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:34,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:34,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:21:34,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:21:34,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:37,502 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:21:37,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:21:37,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:21:37,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 06:21:37,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 06:21:37,794 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:21:38,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:38,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:38,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:38,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:21:38,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:21:38,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:42,917 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:21:42,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:21:42,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:21:43,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 06:21:43,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 06:21:43,201 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:21:44,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:44,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:44,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:44,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:21:44,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:21:44,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:45,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:45,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:45,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:45,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:21:45,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:21:45,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:48,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:48,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:48,960 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:49,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:21:49,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:21:49,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:50,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:50,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:50,324 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:50,447 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:21:50,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:21:50,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:50,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:50,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:50,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:50,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:21:50,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:21:50,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:51,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:51,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:51,113 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:51,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:21:51,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:21:51,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:53,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:53,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:53,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:53,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:21:53,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:21:53,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:21:58,345 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:21:58,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:58,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:58,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:21:58,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:21:58,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:00,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:00,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:00,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:00,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:22:00,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:22:00,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:01,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:01,098 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:01,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:01,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:22:01,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:22:01,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:02,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:02,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:02,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:03,101 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:22:03,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:22:03,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:04,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:04,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:04,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:04,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:22:04,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:22:04,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:04,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:04,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:04,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:04,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:22:04,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:22:04,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:06,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:06,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:06,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:06,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:22:06,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:22:06,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:09,176 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:09,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:09,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:09,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:22:09,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:22:09,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:09,496 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:09,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:09,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:09,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 06:22:09,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 06:22:09,765 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:10,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:10,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:10,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:10,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:22:10,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:22:10,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:11,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:11,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:11,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:11,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:22:11,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:22:11,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:13,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:13,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:13,487 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:13,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:22:13,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:22:13,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:13,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:13,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:13,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:14,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:22:14,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:22:14,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:15,076 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:15,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:15,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:15,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:22:15,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:22:15,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:16,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:16,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:17,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:17,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:22:17,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:22:17,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:19,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:19,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:19,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:19,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:22:19,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:22:19,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:20,293 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:20,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:20,342 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:20,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 06:22:20,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 06:22:20,566 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:23,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:23,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:23,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:23,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:22:23,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:22:23,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:24,007 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:24,008 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:24,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:24,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 06:22:24,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 06:22:24,284 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:24,323 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:22:24,342 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:22:24,417 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=213.047 +2025-10-02 06:22:24,418 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:22:24,419 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:22:24,774 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:24,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:24,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:25,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.243s +2025-10-02 06:22:25,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.243s (avg: 0.122s/image) +2025-10-02 06:22:25,019 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:26,099 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:26,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:26,155 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:26,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 06:22:26,388 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 06:22:26,388 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:26,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:26,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:26,896 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:27,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:22:27,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:22:27,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:27,389 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:27,390 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:27,419 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:27,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:22:27,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:22:27,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:29,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:29,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:29,117 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:29,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:22:29,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:22:29,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:29,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:29,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:29,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:29,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:22:29,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:22:29,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:31,009 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:31,010 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:31,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:31,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:22:31,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:22:31,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:32,086 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:32,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:32,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:32,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 06:22:32,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-02 06:22:32,368 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:32,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:32,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:32,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:32,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:22:32,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:22:32,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:32,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:32,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:32,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:33,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:22:33,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:22:33,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:33,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:33,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:33,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:33,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:22:33,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:22:33,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:36,207 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:36,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:36,259 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:36,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 06:22:36,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-02 06:22:36,488 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:36,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:36,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:36,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:37,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:22:37,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:22:37,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:38,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:38,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:38,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:38,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 06:22:38,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 06:22:38,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:39,101 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:39,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:39,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:39,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-02 06:22:39,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.129s/image) +2025-10-02 06:22:39,361 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:39,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:39,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:39,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:39,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:22:39,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:22:39,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:42,047 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:42,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:42,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:42,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:22:42,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:22:42,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:42,510 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:42,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:42,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:42,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 06:22:42,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.134s/image) +2025-10-02 06:22:42,780 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:43,564 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:22:43,598 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:22:43,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.833 +2025-10-02 06:22:43,695 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.096s +2025-10-02 06:22:43,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +2025-10-02 06:22:43,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:43,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:43,902 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:44,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:22:44,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:22:44,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:44,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:44,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:44,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:44,859 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:22:44,859 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:22:44,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:45,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:45,585 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:45,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:45,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:22:45,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:22:45,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:45,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:45,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:45,934 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:46,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:22:46,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:22:46,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:47,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:47,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:47,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:47,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:22:47,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:22:47,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:47,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:47,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:47,611 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:47,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:22:47,725 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:22:47,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:48,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:48,377 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:48,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:48,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 06:22:48,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 06:22:48,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:48,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:48,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:48,747 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:48,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:22:48,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:22:48,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:49,974 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:49,975 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:49,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:50,107 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 06:22:50,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 06:22:50,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:51,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:51,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:51,660 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:51,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:22:51,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:22:51,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:51,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:51,920 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:51,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:52,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:22:52,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:22:52,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:52,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:52,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:52,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:52,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:22:52,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:22:52,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:54,906 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:22:54,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:54,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:55,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 06:22:55,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-02 06:22:55,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:22:56,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:56,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:56,464 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:56,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:22:56,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:22:56,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:57,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:57,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:57,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:57,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:22:57,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:22:57,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:22:59,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:22:59,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:59,592 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22:59,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:22:59,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:22:59,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:01,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:01,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:01,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:01,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:23:01,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:23:01,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:02,254 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:02,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:02,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:02,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:23:02,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:23:02,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:03,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:03,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:03,266 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:03,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:23:03,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:23:03,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:05,798 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:05,798 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:05,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:05,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:23:05,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:23:05,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:06,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:06,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:06,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:06,247 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:23:06,247 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:23:06,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:10,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:10,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:10,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:10,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:23:10,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:23:10,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:10,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:10,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:10,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:11,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:23:11,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:23:11,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:11,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:11,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:11,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:11,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:23:11,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:23:11,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:14,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:14,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:14,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:14,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:23:14,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:23:14,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:15,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:15,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:15,604 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:15,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:23:15,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:23:15,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:17,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:17,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:17,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:17,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:23:17,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:23:17,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:18,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:18,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:18,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:18,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:23:18,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 06:23:18,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:19,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:19,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:19,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:19,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:23:19,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:23:19,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:21,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:21,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:21,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:21,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:23:21,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:23:21,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:22,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:22,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:22,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:23,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:23:23,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:23:23,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:27,256 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:23:27,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:23:27,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:23:27,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 06:23:27,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.133s/image) +2025-10-02 06:23:27,524 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:23:32,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:32,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:32,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:32,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:23:32,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:23:32,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:33,590 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:33,591 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:33,628 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:33,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:23:33,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:23:33,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:34,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:34,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:34,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:34,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:23:34,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:23:34,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:37,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:37,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:37,714 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:37,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:23:37,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:23:37,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:39,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:39,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:39,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:40,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:23:40,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:23:40,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:41,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:41,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:41,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:41,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:23:41,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:23:41,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:43,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:43,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:43,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:43,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:23:43,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:23:43,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:44,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:44,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:44,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:44,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:23:44,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:23:44,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:45,421 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:23:45,443 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:23:45,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.698 +2025-10-02 06:23:45,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:23:45,528 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:23:48,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:48,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:48,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:48,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:23:48,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:23:48,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:48,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:48,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:48,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:49,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:23:49,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:23:49,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:52,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:52,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:52,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:52,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:23:52,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 06:23:52,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:54,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:54,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:54,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:54,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:23:54,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:23:54,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:55,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:55,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:55,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:55,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:23:55,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:23:55,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:55,621 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:55,622 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:55,650 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:55,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:23:55,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:23:55,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:56,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:56,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:57,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:57,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:23:57,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:23:57,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:57,710 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:57,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:57,750 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:57,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:23:57,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:23:57,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:23:58,776 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:23:58,777 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:58,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:58,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:23:58,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:23:58,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:00,387 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:00,408 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:24:00,486 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=215.919 +2025-10-02 06:24:00,487 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 06:24:00,487 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 06:24:01,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:01,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:01,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:01,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:24:01,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:24:01,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:03,122 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:03,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:03,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:03,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:24:03,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:24:03,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:03,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:03,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:03,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:03,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:24:03,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:24:03,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:05,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:05,574 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:05,609 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:05,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:24:05,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:24:05,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:07,180 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:07,213 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:24:07,303 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.099 +2025-10-02 06:24:07,304 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:24:07,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:24:07,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:07,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:07,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:08,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:24:08,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:24:08,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:08,758 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:08,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:08,798 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:08,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:24:08,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:24:08,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:11,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:11,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:11,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:11,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:24:11,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:24:11,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:11,332 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:11,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:24:11,418 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.364 +2025-10-02 06:24:11,419 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 06:24:11,419 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 06:24:11,514 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:11,533 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:24:11,608 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.359 +2025-10-02 06:24:11,608 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 06:24:11,609 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 06:24:12,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:12,514 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:12,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:12,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:24:12,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:24:12,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:13,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:13,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:13,824 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:13,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:24:13,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:24:13,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:15,057 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:15,094 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:24:15,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=9.070 +2025-10-02 06:24:15,187 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 06:24:15,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 06:24:15,402 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:15,431 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:24:15,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.419 +2025-10-02 06:24:15,514 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:24:15,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:24:16,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:16,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:16,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:16,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:24:16,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:24:16,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:17,281 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:24:17,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:17,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:17,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.265s +2025-10-02 06:24:17,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.265s (avg: 0.133s/image) +2025-10-02 06:24:17,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:24:17,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:17,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:17,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:17,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:24:17,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:24:17,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:22,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:22,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:22,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:22,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:24:22,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:24:22,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:22,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:22,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:22,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:23,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:24:23,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:24:23,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:23,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:23,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:23,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:23,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:24:23,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:24:23,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:24,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:24,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:24,623 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:24,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:24:24,741 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:24:24,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:28,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:28,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:28,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:28,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:24:28,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:24:28,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:28,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:28,567 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:28,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:28,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:24:28,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:24:28,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:29,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:29,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:29,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:29,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:24:29,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:24:29,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:30,559 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:30,587 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:24:30,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.316 +2025-10-02 06:24:30,674 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:24:30,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:24:30,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:30,814 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:30,839 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:30,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:24:30,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:24:30,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:31,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:31,148 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:31,179 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:31,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:24:31,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:24:31,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:31,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:31,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:31,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:31,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:24:31,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:24:31,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:33,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:33,411 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:33,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:33,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:24:33,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:24:33,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:36,306 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:36,307 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:36,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:36,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:24:36,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:24:36,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:36,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:36,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:37,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:37,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:24:37,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:24:37,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:38,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:38,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:38,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:38,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:24:38,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:24:38,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:39,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:39,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:39,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:39,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:24:39,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:24:39,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:40,433 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:40,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:40,471 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:40,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:24:40,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:24:40,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:41,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:41,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:41,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:41,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:24:41,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:24:41,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:42,812 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:42,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:24:42,937 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.664 +2025-10-02 06:24:42,937 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 06:24:42,939 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 06:24:43,904 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:43,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:43,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:44,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:24:44,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:24:44,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:44,964 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:24:44,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:45,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:45,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 06:24:45,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +2025-10-02 06:24:45,254 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:24:46,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:46,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:46,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:46,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:24:46,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:24:46,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:48,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:48,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:48,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:48,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:24:48,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:24:48,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:48,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:48,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:48,712 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:48,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:24:48,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:24:48,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:49,598 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:24:49,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:49,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:49,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 06:24:49,891 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 06:24:49,892 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:24:51,046 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:24:51,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:51,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:51,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 06:24:51,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 06:24:51,334 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:24:51,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:51,916 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:51,951 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:52,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:24:52,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:24:52,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:54,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:54,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:54,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:54,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:24:54,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:24:54,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:55,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:55,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:55,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:55,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:24:55,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:24:55,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:56,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:56,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:56,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:56,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:24:56,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:24:56,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:56,629 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:24:56,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:56,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:56,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 06:24:56,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 06:24:56,906 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:24:57,294 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:24:57,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:57,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:57,561 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.266s +2025-10-02 06:24:57,561 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.266s (avg: 0.133s/image) +2025-10-02 06:24:57,561 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:24:57,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:57,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:57,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:57,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:24:57,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:24:57,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:24:58,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:24:58,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:58,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:58,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:24:58,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:24:58,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:01,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:01,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:01,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:01,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:25:01,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:25:01,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:01,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:01,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:01,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:01,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:25:01,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:25:01,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:02,109 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:02,110 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:02,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:02,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:25:02,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:25:02,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:03,122 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:25:03,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:25:03,175 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:25:03,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.281s +2025-10-02 06:25:03,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.281s (avg: 0.140s/image) +2025-10-02 06:25:03,404 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:25:03,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:03,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:03,734 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:03,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:25:03,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:25:03,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:03,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:03,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:04,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:04,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:25:04,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:25:04,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:04,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:04,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:04,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:04,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:25:04,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:25:04,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:05,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:25:05,719 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:25:05,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:25:05,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 06:25:05,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 06:25:05,999 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:25:07,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:07,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:07,079 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:07,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:25:07,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:25:07,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:08,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:08,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:08,248 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:08,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:25:08,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:25:08,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:09,625 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:09,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:09,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:09,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:25:09,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:25:09,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:10,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:10,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:10,288 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:10,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:25:10,400 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:25:10,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:10,681 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:10,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:10,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:10,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:25:10,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:25:10,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:10,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:10,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:11,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:11,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:25:11,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:25:11,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:13,055 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:13,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:13,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:13,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:25:13,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:25:13,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:14,133 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:25:14,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:25:14,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:25:14,405 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 06:25:14,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.136s/image) +2025-10-02 06:25:14,406 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:25:16,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:16,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:16,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:16,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:25:16,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:25:16,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:18,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:18,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:18,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:18,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:25:18,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:25:18,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:18,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:18,627 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:18,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:18,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.124s +2025-10-02 06:25:18,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +2025-10-02 06:25:18,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:19,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:19,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:19,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:19,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:25:19,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:25:19,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:22,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:22,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:22,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:22,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:25:22,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:25:22,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:23,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:23,150 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:23,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:23,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:25:23,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:25:23,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:25,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:25,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:25,099 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:25,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:25:25,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:25:25,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:25,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:25,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:25,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:25,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:25:25,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:25:25,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:27,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:27,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:27,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:27,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:25:27,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:25:27,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:27,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:27,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:27,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:27,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:25:27,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:25:27,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:30,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:30,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:30,776 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:30,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:25:30,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:25:30,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:31,623 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:31,624 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:31,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:31,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:25:31,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:25:31,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:33,126 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:33,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:33,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:33,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:25:33,271 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:25:33,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:33,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:33,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:33,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:33,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 06:25:33,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 06:25:33,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:34,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:34,588 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:34,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:34,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:25:34,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:25:34,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:35,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:35,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:35,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:35,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:25:35,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:25:35,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:36,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:36,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:36,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:36,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:25:36,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:25:36,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:37,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:37,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:37,139 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:37,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:25:37,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:25:37,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:37,993 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:37,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:38,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:38,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:25:38,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:25:38,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:39,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:39,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:39,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:39,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:25:39,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:25:39,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:40,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:40,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:40,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:40,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:25:40,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:25:40,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:41,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:41,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:41,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:41,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:25:41,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:25:41,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:42,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:42,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:42,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:42,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:25:42,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:25:42,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:42,997 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:25:43,019 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:25:43,103 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.196 +2025-10-02 06:25:43,104 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:25:43,106 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:25:43,447 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:43,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:43,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:43,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:25:43,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:25:43,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:43,745 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:43,746 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:43,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:43,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:25:43,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:25:43,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:46,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:46,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:46,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:46,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:25:46,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:25:46,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:47,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:25:47,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:25:47,932 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.136 +2025-10-02 06:25:47,933 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:25:47,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:25:48,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:48,921 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:48,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:49,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:25:49,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:25:49,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:50,174 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:50,174 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:50,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:50,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:25:50,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:25:50,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:50,584 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:50,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:50,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:50,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:25:50,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:25:50,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:51,477 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:25:51,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:25:51,580 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.945 +2025-10-02 06:25:51,580 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:25:51,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 06:25:54,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:54,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:54,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:54,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:25:54,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:25:54,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:54,824 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:54,825 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:54,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:54,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:25:54,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:25:54,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:55,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:55,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:55,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:55,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:25:55,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:25:55,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:56,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:56,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:56,308 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:56,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:25:56,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:25:56,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:57,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:25:57,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:57,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:57,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:25:57,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:25:57,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:25:57,478 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:25:57,499 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:25:57,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=194.509 +2025-10-02 06:25:57,588 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:25:57,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:26:00,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:00,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:00,563 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:00,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:26:00,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:26:00,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:01,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:01,220 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:01,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:01,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:26:01,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:26:01,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:03,194 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:26:03,194 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:03,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:26:03,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 06:26:03,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 06:26:03,485 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:26:04,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:04,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:04,059 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:04,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:26:04,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:26:04,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:05,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:05,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:06,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:06,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:26:06,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:26:06,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:07,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:07,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:07,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:07,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:26:07,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:26:07,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:09,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:09,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:09,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:09,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:26:09,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:26:09,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:10,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:10,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:11,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:11,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:26:11,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:26:11,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:12,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:12,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:12,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:12,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:26:12,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:26:12,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:14,113 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:14,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:14,153 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:14,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:26:14,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:26:14,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:15,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:15,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:15,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:15,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:26:15,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:26:15,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:17,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:17,929 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:17,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:18,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:26:18,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:26:18,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:20,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:20,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:20,231 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:20,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:26:20,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:26:20,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:21,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:21,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:21,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:21,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:26:21,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:26:21,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:22,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:22,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:22,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:23,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:26:23,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:26:23,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:23,384 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:23,385 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:23,413 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:23,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:26:23,531 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:26:23,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:26,261 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:26,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:26,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:26,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:26:26,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:26:26,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:26,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:26,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:26,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:26,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:26:26,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:26:26,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:30,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:30,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:30,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:30,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:26:30,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:26:30,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:31,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:31,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:31,922 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:32,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:26:32,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:26:32,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:32,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:32,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:32,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:33,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:26:33,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:26:33,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:33,249 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:26:33,271 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:26:33,360 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.681 +2025-10-02 06:26:33,360 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:26:33,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:26:33,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:33,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:33,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:33,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:26:33,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:26:33,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:34,620 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:26:34,644 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:26:34,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.212 +2025-10-02 06:26:34,731 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:26:34,732 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:26:34,915 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:34,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:34,940 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:35,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:26:35,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:26:35,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:35,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:35,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:35,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:35,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:26:35,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:26:35,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:35,973 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:35,974 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:36,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:36,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:26:36,121 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:26:36,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:37,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:37,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:37,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:37,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:26:37,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:26:37,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:37,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:37,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:37,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:37,949 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:26:37,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:26:37,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:38,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:38,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:38,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:38,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:26:38,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:26:38,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:39,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:39,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:39,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:39,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:26:39,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:26:39,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:40,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:40,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:40,349 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:40,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:26:40,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:26:40,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:40,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:40,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:40,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:40,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:26:40,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:26:40,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:41,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:41,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:41,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:41,939 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:26:41,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:26:41,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:42,396 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:26:42,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:42,446 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:26:42,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 06:26:42,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.137s/image) +2025-10-02 06:26:42,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:26:44,960 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:44,961 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:44,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:45,105 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:26:45,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:26:45,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:45,214 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:26:45,237 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:26:45,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.623 +2025-10-02 06:26:45,320 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:26:45,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:26:45,348 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:26:45,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:45,407 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:26:45,644 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.294s +2025-10-02 06:26:45,644 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.294s (avg: 0.147s/image) +2025-10-02 06:26:45,644 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:26:46,604 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:26:46,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:46,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:26:46,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +2025-10-02 06:26:46,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-02 06:26:46,878 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:26:49,197 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:49,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:49,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:49,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:26:49,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:26:49,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:50,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:50,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:50,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:50,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:26:50,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:26:50,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:50,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:50,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:50,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:51,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:26:51,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:26:51,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:51,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:51,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:51,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:51,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:26:51,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:26:51,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:51,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:51,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:51,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:52,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:26:52,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:26:52,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:52,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:52,213 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:52,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:52,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:26:52,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:26:52,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:53,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:53,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:53,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:53,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:26:53,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:26:53,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:55,354 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:55,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:55,393 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:55,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:26:55,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:26:55,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:55,826 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:55,826 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:55,855 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:55,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:26:55,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:26:55,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:57,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:57,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:57,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:58,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:26:58,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:26:58,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:58,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:26:58,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:58,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:58,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:26:58,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:26:58,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:26:59,133 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:26:59,133 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:59,188 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:26:59,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 06:26:59,420 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 06:26:59,421 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:27:00,005 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:00,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:00,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:00,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:27:00,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:27:00,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:00,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:00,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:01,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:01,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:27:01,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:27:01,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:02,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:02,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:02,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:02,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:27:02,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:27:02,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:02,904 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:27:02,929 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:27:03,010 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.664 +2025-10-02 06:27:03,011 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:27:03,012 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:27:03,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:03,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:03,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:03,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:27:03,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:27:03,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:05,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:05,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:05,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:05,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:27:05,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:27:05,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:06,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:06,248 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:06,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:06,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:27:06,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:27:06,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:06,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:06,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:06,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:06,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:27:06,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:27:06,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:07,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:07,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:07,350 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:07,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:27:07,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:27:07,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:07,976 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:07,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:08,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:08,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:27:08,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:27:08,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:08,273 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:08,274 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:08,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:08,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:27:08,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:27:08,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:10,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:10,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:10,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:10,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:27:10,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:27:10,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:11,342 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:27:11,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:27:11,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:27:11,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-02 06:27:11,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-02 06:27:11,602 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:27:11,768 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:11,769 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:11,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:11,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:27:11,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:27:11,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:12,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:12,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:12,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:12,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:27:12,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:27:12,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:13,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:13,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:13,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:14,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:27:14,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:27:14,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:16,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:16,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:16,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:17,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:27:17,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:27:17,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:17,819 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:27:17,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:27:17,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:27:18,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.256s +2025-10-02 06:27:18,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.256s (avg: 0.128s/image) +2025-10-02 06:27:18,076 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:27:18,240 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:18,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:18,272 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:18,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:27:18,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:27:18,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:18,529 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:18,529 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:18,560 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:18,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:27:18,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:27:18,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:21,792 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:21,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:21,829 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:21,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:27:21,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:27:21,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:22,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:22,702 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:22,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:22,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:27:22,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:27:22,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:22,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:22,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:23,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:23,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:27:23,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:27:23,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:24,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:24,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:24,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:24,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:27:24,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:27:24,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:24,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:24,968 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:24,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:25,111 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:27:25,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:27:25,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:25,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:25,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:25,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:25,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:27:25,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:27:25,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:26,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:26,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:26,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:26,295 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:27:26,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:27:26,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:27,851 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:27,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:27,887 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:28,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:27:28,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:27:28,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:28,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:28,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:28,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:29,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:27:29,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:27:29,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:29,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:29,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:29,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:29,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:27:29,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:27:29,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:29,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:29,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:29,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:29,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:27:29,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:27:29,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:32,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:32,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:32,333 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:32,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:27:32,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:27:32,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:34,444 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:34,445 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:34,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:34,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:27:34,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:27:34,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:36,408 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:36,409 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:36,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:36,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:27:36,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:27:36,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:37,029 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:27:37,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:27:37,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:27:37,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.247s +2025-10-02 06:27:37,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.247s (avg: 0.124s/image) +2025-10-02 06:27:37,278 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:27:38,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:38,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:38,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:38,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:27:38,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:27:38,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:42,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:42,662 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:42,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:42,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:27:42,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:27:42,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:43,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:43,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:43,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:43,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:27:43,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:27:43,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:43,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:43,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:43,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:44,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:27:44,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:27:44,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:44,667 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:27:44,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:27:44,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:27:44,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 06:27:44,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 06:27:44,930 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:27:46,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:46,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:47,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:47,151 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 06:27:47,151 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 06:27:47,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:48,459 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:48,460 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:48,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:48,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:27:48,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:27:48,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:49,971 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:27:49,998 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:27:50,085 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.536 +2025-10-02 06:27:50,085 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:27:50,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:27:51,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:51,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:51,131 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:51,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:27:51,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:27:51,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:52,131 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:52,131 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:52,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:52,287 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:27:52,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:27:52,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:53,780 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:27:53,803 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:27:53,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.938 +2025-10-02 06:27:53,896 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 06:27:53,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 06:27:56,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:56,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:56,071 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:56,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:27:56,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:27:56,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:56,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:27:56,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:56,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:56,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:27:56,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:27:56,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:27:57,862 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:27:57,895 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:27:57,984 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=217.780 +2025-10-02 06:27:57,984 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:27:57,986 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:28:01,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:01,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:01,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:01,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:28:01,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:28:01,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:04,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:04,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:04,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:04,344 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:28:04,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:28:04,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:05,093 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:05,094 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:05,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:05,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:28:05,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:28:05,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:06,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:06,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:06,815 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:06,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:28:06,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:28:06,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:07,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:07,888 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:07,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:08,054 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:28:08,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:28:08,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:08,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:08,461 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:08,503 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:08,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:28:08,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:28:08,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:11,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:11,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:11,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:11,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:28:11,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:28:11,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:15,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:15,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:15,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:15,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:28:15,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:28:15,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:16,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:16,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:16,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:16,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:28:16,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:28:16,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:18,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:18,196 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:18,228 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:18,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:28:18,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:28:18,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:21,688 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:21,714 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:21,794 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.405 +2025-10-02 06:28:21,794 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 06:28:21,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 06:28:26,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:26,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:26,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:26,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:28:26,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:28:26,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:26,370 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:26,391 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:26,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.157 +2025-10-02 06:28:26,474 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:28:26,475 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 06:28:30,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:30,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:30,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:30,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:28:30,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:28:30,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:34,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:34,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:34,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:34,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:28:34,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:28:34,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:36,183 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:36,197 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:36,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.649 +2025-10-02 06:28:36,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 06:28:36,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:28:37,597 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:37,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:37,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:37,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:28:37,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:28:37,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:37,919 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:37,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:37,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:38,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:28:38,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:28:38,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:38,562 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:38,563 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:38,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:38,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:28:38,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:28:38,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:39,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:39,770 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:39,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.259 +2025-10-02 06:28:39,860 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:28:39,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:28:41,848 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:41,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:41,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:42,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:28:42,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:28:42,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:43,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:43,066 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:43,152 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.841 +2025-10-02 06:28:43,152 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:28:43,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:28:45,252 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:45,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:45,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:45,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:28:45,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:28:45,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:47,918 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:47,919 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:47,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:48,087 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:28:48,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:28:48,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:48,508 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:48,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:48,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:48,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:28:48,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:28:48,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:48,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:48,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:48,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:49,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:28:49,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:28:49,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:49,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:49,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:49,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:49,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:28:49,810 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:28:49,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:52,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:52,854 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:52,894 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:53,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:28:53,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:28:53,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:53,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:53,183 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:53,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:53,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:28:53,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:28:53,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:54,816 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:54,817 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:54,841 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:54,950 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 06:28:54,950 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 06:28:54,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:55,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:55,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:55,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:55,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:28:55,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:28:55,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:55,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:55,787 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:55,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:55,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:28:55,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:28:55,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:56,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:28:56,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:28:56,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:56,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:28:56,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:28:56,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:28:59,222 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:59,247 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:59,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.001 +2025-10-02 06:28:59,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 06:28:59,329 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:29:00,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:00,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:00,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:00,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:29:00,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:29:00,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:00,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:00,972 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:01,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:01,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:29:01,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:29:01,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:01,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:01,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:01,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:01,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:29:01,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:29:01,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:04,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:04,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:04,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:04,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:29:04,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:29:04,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:04,989 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:29:05,011 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:29:05,090 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.287 +2025-10-02 06:29:05,091 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:29:05,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 06:29:06,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:06,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:06,285 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:06,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:29:06,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:29:06,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:06,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:06,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:06,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:07,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:29:07,019 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:29:07,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:09,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:09,818 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:09,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:09,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:29:09,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:29:09,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:10,173 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:29:10,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:29:10,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:29:10,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 06:29:10,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 06:29:10,454 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:29:10,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:10,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:10,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:11,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:29:11,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:29:11,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:16,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:16,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:16,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:16,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:29:16,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:29:16,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:16,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:16,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:16,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:16,617 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:29:16,617 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:29:16,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:16,785 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:16,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:16,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:16,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:29:16,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:29:16,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:17,357 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:29:17,358 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:29:17,402 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:29:17,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +2025-10-02 06:29:17,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-02 06:29:17,616 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:29:18,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:18,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:18,456 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:18,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:29:18,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:29:18,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:20,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:20,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:20,521 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:20,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:29:20,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:29:20,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:21,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:21,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:21,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:22,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:29:22,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:29:22,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:22,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:22,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:22,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:22,435 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:29:22,435 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:29:22,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:23,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:23,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:23,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:23,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:29:23,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:29:23,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:24,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:24,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:24,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:24,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:29:24,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:29:24,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:24,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:24,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:25,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:25,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:29:25,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:29:25,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:25,309 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:25,310 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:25,332 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:25,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 06:29:25,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 06:29:25,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:26,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:26,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:26,906 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:27,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:29:27,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:29:27,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:27,337 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:29:27,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:29:27,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:29:27,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 06:29:27,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 06:29:27,619 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:29:27,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:27,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:27,867 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:27,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:29:27,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:29:27,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:28,256 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:28,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:28,289 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:28,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:29:28,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:29:28,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:31,656 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:29:31,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:29:31,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:29:31,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 06:29:31,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 06:29:31,956 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:29:32,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:32,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:32,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:32,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:29:32,833 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:29:32,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:34,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:34,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:34,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:34,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:29:34,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:29:34,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:36,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:29:36,559 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:29:36,639 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.929 +2025-10-02 06:29:36,640 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 06:29:36,641 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 06:29:36,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:36,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:36,808 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:36,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:29:36,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:29:36,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:37,649 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:37,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:37,701 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:37,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:29:37,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:29:37,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:38,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:38,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:38,424 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:38,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:29:38,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:29:38,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:41,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:41,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:41,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:41,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:29:41,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:29:41,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:41,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:41,980 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:42,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:42,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:29:42,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:29:42,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:43,637 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:43,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:43,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:43,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:29:43,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:29:43,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:44,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:44,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:44,374 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:44,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:29:44,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:29:44,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:44,691 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:29:44,712 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:29:44,791 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=220.813 +2025-10-02 06:29:44,792 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:29:44,792 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:29:45,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:45,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:45,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:46,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:29:46,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:29:46,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:47,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:47,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:47,508 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:47,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:29:47,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:29:47,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:49,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:49,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:49,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:49,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:29:49,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:29:49,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:50,162 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:50,163 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:50,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:50,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:29:50,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:29:50,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:51,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:29:51,845 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:29:51,915 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.017 +2025-10-02 06:29:51,916 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.070s +2025-10-02 06:29:51,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +2025-10-02 06:29:52,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:52,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:52,470 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:52,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:29:52,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:29:52,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:54,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:54,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:54,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:54,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:29:54,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:29:54,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:55,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:55,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:55,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:55,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:29:55,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:29:55,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:55,468 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:55,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:55,500 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:55,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:29:55,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:29:55,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:29:59,288 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:29:59,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:29:59,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:59,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:29:59,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:29:59,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:01,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:01,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:01,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:01,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:30:01,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:30:01,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:03,721 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:03,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:03,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:03,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:30:03,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:30:03,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:06,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:06,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:06,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:06,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:30:06,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:30:06,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:07,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:07,802 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:07,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:07,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:30:07,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:30:07,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:09,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:09,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:09,881 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:10,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:30:10,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:30:10,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:10,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:10,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:10,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:10,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:30:10,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:30:10,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:11,634 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:11,656 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:11,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.628 +2025-10-02 06:30:11,732 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:30:11,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 06:30:12,627 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:30:12,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:30:12,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:12,933 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.305s +2025-10-02 06:30:12,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.305s (avg: 0.152s/image) +2025-10-02 06:30:12,934 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:30:14,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:14,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:14,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:14,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:30:14,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:30:14,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:16,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:16,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:16,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:16,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:30:16,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:30:16,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:16,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:16,614 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:16,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:16,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:30:16,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:30:16,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:17,179 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:17,209 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:17,294 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.806 +2025-10-02 06:30:17,294 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:30:17,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:30:17,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:17,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:17,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:17,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:30:17,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:30:17,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:17,858 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:30:17,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:30:17,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:18,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 06:30:18,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 06:30:18,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:30:19,842 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:19,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:19,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:20,010 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:30:20,010 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:30:20,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:21,118 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:21,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:21,217 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=198.626 +2025-10-02 06:30:21,218 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:30:21,218 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:30:21,251 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:21,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:21,281 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:21,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:30:21,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:30:21,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:21,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:21,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:21,901 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:22,032 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:30:22,032 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:30:22,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:25,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:25,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:25,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:25,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:30:25,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:30:25,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:26,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:26,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:26,645 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:26,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:30:26,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:30:26,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:27,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:27,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:27,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:27,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:30:27,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:30:27,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:28,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:28,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:29,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:29,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:30:29,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:30:29,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:29,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:29,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:29,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:29,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:30:29,542 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:30:29,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:29,718 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:30:29,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:30:29,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:29,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 06:30:29,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 06:30:29,991 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:30:30,844 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:30,873 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 748, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:30,965 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.479 +2025-10-02 06:30:30,965 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:30:30,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 06:30:31,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:31,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:31,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:31,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:30:31,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:30:31,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:31,654 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:31,672 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:31,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.638 +2025-10-02 06:30:31,752 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 06:30:31,753 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 06:30:34,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:34,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:34,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:34,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 06:30:34,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 06:30:34,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:35,303 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:35,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:35,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:35,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:30:35,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:30:35,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:35,657 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:35,676 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:35,762 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.391 +2025-10-02 06:30:35,762 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:30:35,762 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:30:36,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:36,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:36,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:36,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:30:36,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:30:36,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:36,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:36,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:36,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:37,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:30:37,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:30:37,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:37,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:37,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:37,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:37,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:30:37,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:30:37,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:39,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:39,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:39,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:39,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:30:39,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:30:39,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:39,549 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:39,567 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:39,639 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.655 +2025-10-02 06:30:39,640 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +2025-10-02 06:30:39,640 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 06:30:41,077 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:30:41,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:30:41,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:41,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-02 06:30:41,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.151s/image) +2025-10-02 06:30:41,381 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:30:41,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:41,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:41,703 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:41,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:30:41,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:30:41,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:42,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:42,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:42,530 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:42,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:30:42,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:30:42,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:43,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:43,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:43,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:44,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:30:44,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:30:44,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:45,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:45,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:45,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:45,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:30:45,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:30:45,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:48,291 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:48,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:48,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:48,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:30:48,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:30:48,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:48,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:48,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:48,684 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:48,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:30:48,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:30:48,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:48,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:48,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:49,041 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:49,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:30:49,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:30:49,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:49,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:49,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:49,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:49,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:30:49,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:30:49,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:53,396 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:53,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:53,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:53,552 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:30:53,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:30:53,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:54,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:54,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:54,082 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:54,203 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:30:54,204 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:30:54,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:57,186 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:30:57,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:57,222 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:30:57,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:30:57,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:30:57,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:30:57,811 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:30:57,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:30:57,874 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:58,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 06:30:58,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 06:30:58,111 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:31:00,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:00,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:00,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:00,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:31:00,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:31:00,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:02,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:02,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:02,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:02,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:31:02,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:31:02,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:02,640 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:02,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:02,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:02,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:31:02,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:31:02,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:04,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:04,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:04,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:04,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:31:04,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:31:04,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:05,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:05,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:05,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:05,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:31:05,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:31:05,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:05,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:05,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:05,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:06,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:31:06,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:31:06,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:07,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:07,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:07,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:08,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:31:08,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:31:08,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:08,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:08,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:08,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:09,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:31:09,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:31:09,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:10,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:10,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:10,398 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:10,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:31:10,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:31:10,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:13,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:13,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:13,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:13,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:31:13,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:31:13,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:15,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:15,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:15,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:15,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:31:15,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:31:15,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:15,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:15,782 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:15,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:15,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:31:15,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:31:15,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:16,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:16,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:16,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:16,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:31:16,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:31:16,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:20,238 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:31:20,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:31:20,292 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:31:20,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 06:31:20,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 06:31:20,523 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:31:20,834 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:20,834 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:20,864 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:20,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:31:20,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:31:20,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:24,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:24,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:24,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:24,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:31:24,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:31:24,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:24,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:24,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:24,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:24,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:31:24,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:31:24,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:25,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:25,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:25,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:25,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:31:25,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:31:25,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:26,613 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:26,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:26,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:26,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:31:26,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:31:26,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:26,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:26,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:26,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:27,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:31:27,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:31:27,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:28,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:28,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:28,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:28,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:31:28,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:31:28,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:29,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:29,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:29,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:29,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:31:29,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:31:29,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:30,124 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:30,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:30,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:30,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:31:30,294 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:31:30,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:30,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:30,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:30,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:30,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:31:30,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:31:30,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:31,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:31,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:31,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:31,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:31:31,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:31:31,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:32,442 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:32,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:32,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:32,597 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:31:32,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:31:32,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:32,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:32,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:32,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:33,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:31:33,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:31:33,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:37,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:37,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:37,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:37,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:31:37,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:31:37,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:38,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:38,423 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:38,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:38,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:31:38,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:31:38,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:38,738 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:38,739 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:38,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:38,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:31:38,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:31:38,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:39,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:39,730 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:39,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:39,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:31:39,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:31:39,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:40,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:40,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:40,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:40,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:31:40,445 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:31:40,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:40,591 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:31:40,592 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:31:40,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:31:40,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 06:31:40,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 06:31:40,894 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:31:41,413 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:41,414 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:41,458 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:41,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:31:41,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:31:41,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:43,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:43,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:43,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:43,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:31:43,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:31:43,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:44,012 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:44,013 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:44,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:44,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:31:44,156 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:31:44,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:44,893 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:31:44,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:31:44,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:31:45,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.302s +2025-10-02 06:31:45,197 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.302s (avg: 0.151s/image) +2025-10-02 06:31:45,197 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:31:46,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:46,006 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:46,046 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:46,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:31:46,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:31:46,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:47,448 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:31:47,474 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:31:47,575 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.210 +2025-10-02 06:31:47,575 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +2025-10-02 06:31:47,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +2025-10-02 06:31:49,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:49,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:49,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:49,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:31:49,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:31:49,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:49,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:49,678 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:49,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:49,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:31:49,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:31:49,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:52,125 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:52,127 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:52,162 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:52,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:31:52,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:31:52,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:52,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:52,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:52,483 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:52,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:31:52,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:31:52,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:54,019 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:54,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:54,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:54,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:31:54,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:31:54,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:54,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:54,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:54,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:54,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:31:54,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:31:54,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:56,727 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:56,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:56,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:56,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:31:56,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:31:56,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:31:59,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:31:59,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:00,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:00,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:32:00,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:32:00,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:00,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:00,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:00,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:00,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:32:00,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 06:32:00,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:01,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:01,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:01,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:01,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:32:01,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:32:01,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:04,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:04,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:04,325 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:04,456 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:32:04,457 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:32:04,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:05,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:05,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:06,004 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:06,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:32:06,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:32:06,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:06,414 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:06,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:06,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:06,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:32:06,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:32:06,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:07,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:07,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:07,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:07,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:32:07,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:32:07,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:10,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:10,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:10,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:10,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:32:10,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:32:10,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:12,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:12,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:12,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:12,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:32:12,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:32:12,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:14,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:32:14,128 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:32:14,206 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.021 +2025-10-02 06:32:14,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 06:32:14,207 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:32:16,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:16,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:16,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:16,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:32:16,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:32:16,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:17,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:17,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:17,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:17,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:32:17,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:32:17,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:17,722 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:32:17,745 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:32:17,831 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.485 +2025-10-02 06:32:17,831 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:32:17,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:32:19,351 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:19,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:19,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:19,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:32:19,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:32:19,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:20,996 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:20,997 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:21,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:21,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:32:21,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:32:21,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:21,695 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:32:21,726 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:32:21,814 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.655 +2025-10-02 06:32:21,814 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:32:21,816 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:32:22,019 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:32:22,038 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:32:22,125 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.260 +2025-10-02 06:32:22,126 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:32:22,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:32:28,083 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:28,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:28,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:28,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:32:28,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:32:28,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:45,214 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:45,215 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:45,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:45,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:32:45,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:32:45,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:51,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:51,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:51,387 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:51,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:32:51,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:32:51,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:52,762 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:52,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:52,796 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:52,907 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:32:52,907 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:32:52,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:57,443 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:57,443 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:57,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:57,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:32:57,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:32:57,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:32:58,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:32:58,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:32:58,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:32:58,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:32:58,929 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:32:58,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:02,353 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:02,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:02,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:02,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:33:02,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:33:02,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:03,255 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:03,256 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:03,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:03,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:33:03,404 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:33:03,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:03,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:03,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:04,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:04,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:33:04,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:33:04,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:05,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:05,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:05,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:05,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-02 06:33:05,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.127s (avg: 0.127s/image) +2025-10-02 06:33:05,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:05,757 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:05,758 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:05,787 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:05,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:33:05,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:33:05,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:06,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:06,394 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:06,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:06,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:33:06,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:33:06,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:09,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:09,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:10,027 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:10,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 06:33:10,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 06:33:10,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:11,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:11,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:11,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:12,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:33:12,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:33:12,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:12,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:12,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:12,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:12,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:33:12,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:33:12,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:13,038 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:33:13,055 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:33:13,128 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.815 +2025-10-02 06:33:13,129 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 06:33:13,129 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 06:33:13,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:13,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:14,000 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:14,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:33:14,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:33:14,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:16,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:16,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:16,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:16,713 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:33:16,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:33:16,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:17,469 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:33:17,494 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:33:17,573 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.717 +2025-10-02 06:33:17,574 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 06:33:17,576 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 06:33:20,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:20,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:20,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:21,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 06:33:21,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 06:33:21,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:21,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:21,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:21,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:21,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:33:21,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:33:21,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:22,561 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:33:22,583 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:33:22,673 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.330 +2025-10-02 06:33:22,673 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:33:22,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:33:23,712 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:23,713 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:23,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:23,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:33:23,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:33:23,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:25,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:25,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:25,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:25,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:33:25,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:33:25,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:25,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:25,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:25,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:25,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:33:25,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:33:25,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:27,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:27,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:27,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:27,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:33:27,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:33:27,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:27,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:27,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:27,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:28,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:33:28,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:33:28,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:29,087 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:29,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:29,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:29,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:33:29,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:33:29,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:29,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:29,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:29,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:29,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:33:29,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:33:29,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:29,565 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:33:29,586 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:33:29,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.949 +2025-10-02 06:33:29,668 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:33:29,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:33:29,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:29,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:29,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:30,009 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:33:30,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:33:30,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:30,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:30,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:30,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:30,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:33:30,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:33:30,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:31,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:31,263 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:31,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:31,402 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:33:31,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:33:31,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:32,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:32,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:32,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:32,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:33:32,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:33:32,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:35,013 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:33:35,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:33:35,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:33:35,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 06:33:35,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 06:33:35,301 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:33:35,473 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:35,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:35,502 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:35,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:33:35,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:33:35,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:35,759 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:33:35,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:33:35,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:33:36,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.252s +2025-10-02 06:33:36,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.252s (avg: 0.126s/image) +2025-10-02 06:33:36,012 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:33:36,854 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:36,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:36,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:37,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:33:37,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:33:37,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:38,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:38,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:38,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:38,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:33:38,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:33:38,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:39,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:39,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:39,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:39,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:33:39,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:33:39,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:41,363 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:41,363 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:41,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:41,542 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:33:41,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:33:41,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:41,965 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:33:41,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:33:42,024 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:33:42,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 06:33:42,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 06:33:42,258 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:33:42,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:42,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:42,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:42,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:33:42,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:33:42,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:43,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:43,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:44,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:44,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:33:44,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:33:44,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:46,456 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:46,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:46,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:46,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:33:46,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:33:46,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:48,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:48,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:48,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:48,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:33:48,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:33:48,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:49,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:49,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:49,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:49,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:33:49,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:33:49,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:49,862 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:49,863 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:49,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:50,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:33:50,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:33:50,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:50,455 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:50,456 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:50,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:50,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.130s +2025-10-02 06:33:50,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.130s (avg: 0.130s/image) +2025-10-02 06:33:50,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:50,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:50,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:50,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:50,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:33:50,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:33:50,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:51,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:51,332 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:51,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:51,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:33:51,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:33:51,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:51,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:51,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:51,662 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:51,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 06:33:51,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 06:33:51,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:53,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:53,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:53,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:53,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:33:53,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:33:53,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:55,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:55,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:55,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:55,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:33:55,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:33:55,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:56,419 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:56,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:56,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:56,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:33:56,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:33:56,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:57,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:57,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:57,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:57,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:33:57,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:33:57,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:58,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:58,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:58,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:58,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 06:33:58,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 06:33:58,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:33:59,322 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:33:59,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:59,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:59,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:33:59,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:33:59,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:00,859 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:00,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:00,890 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:01,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:34:01,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:34:01,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:01,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:01,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:01,450 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:01,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:34:01,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:34:01,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:03,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:03,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:03,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:03,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:34:03,428 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:34:03,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:05,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:05,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:05,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:06,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 06:34:06,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 06:34:06,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:06,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:06,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:06,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:06,373 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:34:06,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:34:06,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:07,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:07,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:07,138 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:07,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:34:07,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:34:07,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:07,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:07,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:07,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:07,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:34:07,579 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:34:07,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:07,991 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:07,992 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:08,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:08,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:34:08,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:34:08,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:08,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:08,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:08,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:09,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:34:09,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:34:09,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:09,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:09,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:09,245 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:09,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:34:09,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:34:09,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:13,377 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:13,378 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:13,426 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:13,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:34:13,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:34:13,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:14,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:14,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:14,215 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:14,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:34:14,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:34:14,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:16,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:16,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:16,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:16,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:34:16,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:34:16,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:17,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:17,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:17,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:18,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:34:18,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:34:18,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:19,051 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:19,052 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:19,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:19,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:34:19,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:34:19,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:20,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:20,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:20,664 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:20,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:34:20,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:34:20,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:21,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:21,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:21,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:21,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:34:21,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:34:21,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:23,680 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:23,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:34:23,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.300 +2025-10-02 06:34:23,804 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 06:34:23,806 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 06:34:23,952 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:23,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:23,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:24,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:34:24,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:34:24,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:26,199 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:26,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:26,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:26,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:34:26,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:34:26,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:26,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:26,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:26,573 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:26,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:34:26,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:34:26,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:28,735 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:28,767 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:34:28,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.920 +2025-10-02 06:34:28,860 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 06:34:28,860 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:34:29,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:29,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:29,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:29,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:34:29,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:34:29,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:32,475 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:34:32,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:34:32,523 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:34:32,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 06:34:32,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.143s/image) +2025-10-02 06:34:32,763 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:34:33,464 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:33,484 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:34:33,568 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.191 +2025-10-02 06:34:33,568 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:34:33,570 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:34:33,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:33,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:34,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:34,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:34:34,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:34:34,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:34,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:35,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:34:35,115 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.676 +2025-10-02 06:34:35,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +2025-10-02 06:34:35,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 06:34:35,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:35,455 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:35,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:35,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:34:35,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:34:35,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:35,854 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:35,879 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:34:35,968 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.083 +2025-10-02 06:34:35,969 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:34:35,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:34:37,219 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:37,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:37,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:37,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:34:37,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:34:37,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:38,143 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:38,144 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:38,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:38,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:34:38,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:34:38,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:41,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:41,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:41,427 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:41,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:34:41,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:34:41,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:43,474 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:34:43,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:34:43,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:34:43,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 06:34:43,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 06:34:43,769 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:34:44,286 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:44,287 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:44,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:44,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:34:44,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:34:44,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:44,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:44,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:44,641 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:44,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:34:44,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:34:44,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:45,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:45,067 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:45,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:45,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:34:45,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:34:45,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:45,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:45,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:45,850 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:45,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:34:45,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:34:45,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:48,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:48,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:48,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:48,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:34:48,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:34:48,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:49,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:49,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:49,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:49,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:34:49,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:34:49,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:51,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:51,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:51,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:51,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:34:51,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:34:51,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:52,943 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:34:52,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:34:53,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:34:53,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 06:34:53,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 06:34:53,233 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:34:53,852 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:34:53,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:34:53,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:34:54,140 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 06:34:54,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-02 06:34:54,140 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:34:55,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:55,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:55,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:56,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:34:56,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:34:56,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:56,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:56,404 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:56,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:56,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:34:56,577 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:34:56,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:59,045 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:59,046 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:59,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:59,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:34:59,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:34:59,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:34:59,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:34:59,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:59,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:34:59,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:34:59,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:34:59,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:02,349 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:02,350 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:02,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:02,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:35:02,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:35:02,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:03,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:03,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:03,995 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:04,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:35:04,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:35:04,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:06,265 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:06,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:06,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:06,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:35:06,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:35:06,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:06,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:06,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:06,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:06,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:35:06,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:35:06,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:07,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:07,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:07,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:07,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:35:07,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:35:07,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:09,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:09,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:09,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:09,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:35:09,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:35:09,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:10,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:10,097 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:10,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:10,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:35:10,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:35:10,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:10,524 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:10,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:10,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:10,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:35:10,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:35:10,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:11,054 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:11,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:11,090 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:11,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:35:11,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:35:11,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:11,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:11,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:11,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:11,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:35:11,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:35:11,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:12,276 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:12,277 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:12,314 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:12,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:35:12,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:35:12,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:13,279 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:13,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:13,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:13,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:35:13,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:35:13,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:14,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:14,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:14,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:14,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:35:14,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:35:14,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:17,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:17,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:17,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:17,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:35:17,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:35:17,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:18,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:18,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:18,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:18,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:35:18,779 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:35:18,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:20,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:20,090 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:20,128 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:20,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:35:20,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:35:20,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:20,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:20,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:20,479 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:20,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:35:20,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:35:20,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:20,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:20,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:20,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:21,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:35:21,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:35:21,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:23,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:23,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:23,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:23,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:35:23,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:35:23,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:24,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:24,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:24,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:24,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:35:24,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:35:24,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:25,323 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:25,323 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:25,363 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:25,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:35:25,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:35:25,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:25,959 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:25,960 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:25,992 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:26,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:35:26,109 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:35:26,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:26,954 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:26,954 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:26,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:27,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:35:27,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:35:27,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:27,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:27,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:27,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:27,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:35:27,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:35:27,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:28,116 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:28,117 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:28,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:28,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:35:28,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:35:28,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:28,448 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:28,449 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:28,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:28,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:35:28,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:35:28,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:32,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:33,000 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:33,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:33,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:35:33,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:35:33,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:33,777 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:33,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:33,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:33,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:35:33,948 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:35:33,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:35,753 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:35,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:35,793 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:35,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:35:35,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:35:35,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:36,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:36,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:36,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:36,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:35:36,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:35:36,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:39,297 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:39,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:39,337 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:39,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:35:39,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:35:39,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:39,773 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:35:39,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:35:39,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.876 +2025-10-02 06:35:39,886 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:35:39,888 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:35:41,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:41,106 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:41,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:41,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:35:41,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:35:41,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:41,788 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:41,789 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:41,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:41,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:35:41,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:35:41,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:43,022 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:43,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:43,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:43,180 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:35:43,180 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:35:43,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:44,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:44,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:44,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:44,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:35:44,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:35:44,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:44,833 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:35:44,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:35:44,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.798 +2025-10-02 06:35:44,954 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:35:44,956 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:35:47,063 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:47,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:47,110 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:47,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:35:47,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:35:47,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:47,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:35:47,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:35:47,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.568 +2025-10-02 06:35:47,897 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:35:47,898 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:35:48,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:35:48,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:35:48,940 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=235.753 +2025-10-02 06:35:48,941 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:35:48,942 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:35:49,127 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:49,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:49,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:49,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:35:49,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:35:49,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:50,266 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:50,266 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:50,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:50,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:35:50,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:35:50,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:50,902 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:50,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:50,943 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:51,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:35:51,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 06:35:51,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:52,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:52,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:52,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:53,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:35:53,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:35:53,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:54,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:54,882 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:54,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:55,050 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:35:55,050 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:35:55,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:55,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:55,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:55,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:55,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:35:55,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:35:55,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:56,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:56,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:56,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:57,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:35:57,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:35:57,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:57,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:57,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:57,526 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:57,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:35:57,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:35:57,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:58,233 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:58,234 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:58,287 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:58,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:35:58,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:35:58,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:35:59,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:35:59,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:59,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:59,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:35:59,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:35:59,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:01,896 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:01,897 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:01,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:02,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:36:02,066 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:36:02,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:02,614 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:02,615 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:02,654 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:02,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:36:02,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:36:02,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:03,151 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:03,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:03,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:03,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:36:03,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:36:03,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:03,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:03,552 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:03,597 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:03,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:36:03,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:36:03,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:04,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:04,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:04,705 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:04,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:36:04,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:36:04,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:07,330 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:36:07,354 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:36:07,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.065 +2025-10-02 06:36:07,441 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:36:07,442 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:36:07,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:07,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:07,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:07,608 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:36:07,608 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:36:07,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:09,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:09,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:09,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:09,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:36:09,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:36:09,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:09,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:09,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:09,949 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:10,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:36:10,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:36:10,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:10,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:10,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:10,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:10,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:36:10,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:36:10,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:12,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:12,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:12,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:12,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:36:12,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:36:12,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:14,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:14,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:14,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:15,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:36:15,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:36:15,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:16,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:16,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:16,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:16,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:36:16,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:36:16,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:17,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:17,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:17,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:17,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:36:17,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:36:17,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:20,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:20,222 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:20,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:20,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:36:20,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:36:20,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:21,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:21,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:21,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:21,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:36:21,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:21,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:22,049 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:22,050 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:22,084 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:22,201 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:36:22,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:36:22,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:23,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:23,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:23,969 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:24,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:36:24,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:24,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:24,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:24,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:24,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:24,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:36:24,473 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:36:24,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:24,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:24,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:24,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:25,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:36:25,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:36:25,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:25,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:25,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:25,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:25,747 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:36:25,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:36:25,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:26,384 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:36:26,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:36:26,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:36:26,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 06:36:26,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 06:36:26,686 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:36:26,864 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:26,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:26,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:27,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:36:27,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:27,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:28,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:28,680 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:28,716 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:28,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:36:28,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:36:28,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:29,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:29,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:29,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:29,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:36:29,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:29,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:30,668 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:30,669 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:30,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:30,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:36:30,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:36:30,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:31,137 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:31,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:31,163 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:31,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:36:31,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:36:31,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:31,510 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:31,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:31,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:31,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:36:31,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:36:31,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:33,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:33,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:34,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:34,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:36:34,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:36:34,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:35,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:35,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:35,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:35,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:36:35,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:36:35,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:36,945 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:36,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:36,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:37,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:36:37,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:36:37,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:38,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:38,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:38,681 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:38,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:36:38,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:36:38,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:41,417 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:41,418 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:41,453 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:41,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:36:41,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:36:41,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:41,887 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:41,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:41,928 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:42,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:36:42,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:36:42,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:42,290 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:36:42,315 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:36:42,395 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.432 +2025-10-02 06:36:42,396 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 06:36:42,398 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:36:43,317 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:43,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:43,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:43,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:36:43,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:36:43,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:46,436 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:46,437 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:46,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:46,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 06:36:46,620 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 06:36:46,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:46,933 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:46,933 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:46,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:47,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:36:47,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:36:47,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:48,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:48,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:48,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:48,845 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:36:48,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:36:48,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:51,806 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:36:51,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:36:51,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:36:52,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-02 06:36:52,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.156s/image) +2025-10-02 06:36:52,121 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:36:56,090 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:56,091 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:56,134 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:56,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:36:56,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:36:56,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:57,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:57,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:57,869 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:57,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:36:57,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:36:57,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:59,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:59,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:59,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:59,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:36:59,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:59,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:36:59,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:36:59,544 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:36:59,617 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.383 +2025-10-02 06:36:59,618 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 06:36:59,619 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:36:59,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:36:59,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:36:59,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:00,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:37:00,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:37:00,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:00,982 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:00,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:01,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:01,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:37:01,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:37:01,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:02,168 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:02,169 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:02,198 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:02,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:37:02,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:37:02,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:04,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:04,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:04,190 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:04,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:37:04,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:37:04,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:07,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:07,154 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:07,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:07,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:37:07,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:37:07,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:07,708 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:07,709 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:07,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:07,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:37:07,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:37:07,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:09,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:09,510 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:09,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:09,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:37:09,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:37:09,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:09,830 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:09,831 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:09,868 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:09,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:37:09,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:37:09,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:10,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:10,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:10,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:10,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:37:10,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:37:10,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:12,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:12,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:12,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:12,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:37:12,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:37:12,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:14,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:14,757 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:14,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:14,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 06:37:14,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 06:37:14,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:15,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:15,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:15,899 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:16,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:37:16,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:37:16,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:16,241 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:16,241 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:16,269 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:16,387 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:37:16,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:37:16,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:16,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:16,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:16,674 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:16,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:37:16,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:37:16,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:18,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:18,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:18,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:18,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:37:18,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:37:18,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:19,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:19,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:19,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:20,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:37:20,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:37:20,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:21,623 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:37:21,643 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:37:21,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.697 +2025-10-02 06:37:21,731 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:37:21,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:37:23,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:23,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:23,191 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:23,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:37:23,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:37:23,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:23,715 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:37:23,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:37:23,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:37:23,991 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 06:37:23,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 06:37:23,992 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:37:27,318 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:27,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:27,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:27,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:37:27,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:37:27,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:28,422 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:28,422 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:28,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:28,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:37:28,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:37:28,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:29,179 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:29,180 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:29,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:29,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:37:29,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:37:29,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:30,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:30,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:30,999 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:31,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:37:31,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:37:31,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:31,766 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:31,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:31,800 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:31,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:37:31,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:37:31,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:34,376 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:34,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:34,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:34,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:37:34,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:37:34,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:35,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:35,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:35,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:36,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:37:36,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:37:36,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:36,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:36,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:36,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:37,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:37:37,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:37:37,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:37,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:37,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:37,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:37,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:37:37,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:37:37,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:38,352 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:38,352 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:38,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:38,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:37:38,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:37:38,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:41,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:41,858 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:41,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:42,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:37:42,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:37:42,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:43,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:43,600 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:43,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:43,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:37:43,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:37:43,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:45,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:45,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:45,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:45,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:37:45,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:37:45,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:45,353 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:37:45,353 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:37:45,417 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:37:45,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 06:37:45,639 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 06:37:45,639 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:37:45,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:45,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:45,856 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:45,965 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:37:45,965 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:37:45,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:48,891 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:48,891 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:48,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:49,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:37:49,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:37:49,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:50,922 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:50,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:50,954 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:51,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:37:51,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:37:51,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:52,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:52,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:53,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:53,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:37:53,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:37:53,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:53,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:53,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:53,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:53,842 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:37:53,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 06:37:53,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:54,146 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:54,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:54,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:54,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:37:54,288 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:37:54,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:55,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:55,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:56,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:56,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:37:56,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:37:56,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:57,555 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:57,556 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:57,603 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:57,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:37:57,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:37:57,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:58,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:58,203 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:58,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:58,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:37:58,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:37:58,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:37:59,213 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:37:59,214 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:59,252 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:59,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:37:59,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:37:59,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:00,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:00,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:00,063 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:00,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:38:00,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:38:00,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:02,575 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:02,576 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:02,620 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:02,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:38:02,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:38:02,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:03,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:03,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:03,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:03,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:38:03,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:38:03,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:03,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:03,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:04,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:04,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:38:04,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:38:04,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:04,812 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:04,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:04,844 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:04,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:38:04,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:38:04,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:06,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:06,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:06,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:06,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:38:06,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:38:06,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:07,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:07,123 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:07,160 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:07,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:38:07,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:38:07,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:09,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:09,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:09,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:09,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:38:09,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:38:09,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:10,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:10,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:10,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:10,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:38:10,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:38:10,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:11,269 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:11,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:11,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:11,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:38:11,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:38:11,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:13,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:13,224 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:13,268 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:13,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:38:13,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:38:13,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:14,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:14,081 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:14,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:14,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:38:14,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:38:14,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:17,568 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:17,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:17,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:17,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:38:17,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:38:17,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:19,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:19,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:19,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:19,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:38:19,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:38:19,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:19,571 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:19,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:19,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:19,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:38:19,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:38:19,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:20,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:20,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:20,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:20,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:38:20,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:38:20,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:21,520 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:21,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:21,553 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:21,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:38:21,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:38:21,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:22,634 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:22,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:22,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:22,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:38:22,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:38:22,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:22,808 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:38:22,825 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:38:22,900 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.967 +2025-10-02 06:38:22,900 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 06:38:22,900 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:38:24,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:24,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:24,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:24,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:38:24,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:38:24,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:26,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:26,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:26,140 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:26,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:38:26,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:38:26,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:26,493 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:38:26,515 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:38:26,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.796 +2025-10-02 06:38:26,591 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:38:26,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:38:28,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:28,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:28,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:28,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:38:28,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:38:28,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:29,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:38:29,829 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:38:29,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.558 +2025-10-02 06:38:29,905 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 06:38:29,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 06:38:30,298 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:30,298 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:30,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:30,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:38:30,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:38:30,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:31,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:31,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:31,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:31,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:38:31,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:38:31,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:32,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:32,664 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:32,710 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:32,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:38:32,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:38:32,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:34,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:34,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:34,069 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:34,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:38:34,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:38:34,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:35,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:35,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:35,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:35,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:38:35,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:38:35,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:35,858 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:35,859 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:35,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:36,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:38:36,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:38:36,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:36,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:36,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:36,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:36,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:38:36,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:38:36,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:37,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:37,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:37,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:37,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:38:37,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:38:37,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:39,874 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:39,875 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:39,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:40,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:38:40,044 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:38:40,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:40,441 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:40,442 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:40,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:40,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:38:40,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:38:40,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:41,393 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:41,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:41,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:41,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:38:41,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:38:41,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:41,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:41,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:41,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:41,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:38:41,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:38:41,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:42,547 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:42,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:42,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:42,717 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:38:42,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:38:42,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:45,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:45,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:45,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:45,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:38:45,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:38:45,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:49,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:49,099 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:49,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:49,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:38:49,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:38:49,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:50,034 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:50,034 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:50,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:50,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:38:50,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:38:50,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:53,103 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:53,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:53,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:53,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:38:53,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:38:53,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:54,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:54,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:54,704 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:54,830 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:38:54,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:38:54,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:58,094 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:38:58,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:38:58,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:58,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:38:58,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:38:58,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:38:59,989 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:38:59,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:39:00,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:39:00,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 06:39:00,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.287s (avg: 0.144s/image) +2025-10-02 06:39:00,278 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:39:00,487 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:00,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:00,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:00,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:39:00,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:39:00,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:12,230 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:39:12,255 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:39:12,341 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.704 +2025-10-02 06:39:12,342 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:39:12,343 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:39:14,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:14,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:14,761 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:14,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:39:14,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:39:14,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:15,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:15,912 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:15,961 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:16,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:39:16,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:39:16,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:16,910 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:16,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:16,958 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:17,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:39:17,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:39:17,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:19,867 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:19,868 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:19,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:20,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:39:20,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 06:39:20,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:20,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:20,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:20,410 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:20,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:39:20,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:39:20,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:20,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:20,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:20,755 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:20,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:39:20,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:39:20,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:23,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:23,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:23,305 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:23,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:39:23,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:39:23,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:24,190 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:39:24,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:39:24,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:39:24,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 06:39:24,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 06:39:24,478 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:39:27,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:27,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:27,195 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:27,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:39:27,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:39:27,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:28,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:28,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:28,834 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:28,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:39:28,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:39:28,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:29,106 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:29,107 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:29,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:29,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:39:29,263 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:39:29,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:29,686 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:29,687 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:29,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:29,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:39:29,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:39:29,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:31,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:31,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:31,185 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:31,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:39:31,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:39:31,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:32,445 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:32,446 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:32,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:32,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:39:32,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:39:32,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:32,778 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:39:32,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(804, 804, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:39:32,906 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.178 +2025-10-02 06:39:32,906 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:39:32,908 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:39:35,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:35,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:35,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:35,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:39:35,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:39:35,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:40,358 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:40,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:40,406 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:40,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:39:40,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:39:40,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:41,263 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:41,264 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:41,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:41,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:39:41,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:39:41,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:50,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:50,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:50,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:50,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:39:50,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:39:50,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:50,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:50,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:51,045 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:51,173 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.186s +2025-10-02 06:39:51,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.186s (avg: 0.186s/image) +2025-10-02 06:39:51,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:51,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:51,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:51,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:51,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:39:51,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:39:51,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:53,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:53,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:53,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:53,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:39:53,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:39:53,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:54,356 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:54,357 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:54,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:54,534 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:39:54,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:39:54,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:39:58,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:39:58,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:58,886 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:59,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:39:59,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:39:59,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:01,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:01,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:01,077 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:01,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:40:01,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:40:01,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:04,158 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:04,159 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:04,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:04,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:40:04,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:40:04,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:04,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:04,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:04,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:04,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:40:04,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:40:04,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:05,561 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:05,561 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:05,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:05,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:40:05,713 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:40:05,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:07,462 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:07,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:07,496 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:07,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:40:07,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:40:07,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:08,516 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:08,546 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:08,651 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.299 +2025-10-02 06:40:08,652 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.104s +2025-10-02 06:40:08,654 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +2025-10-02 06:40:09,004 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:09,005 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:09,042 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:09,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:40:09,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:40:09,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:09,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:09,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:09,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:09,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:40:09,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:40:09,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:11,064 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:11,064 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:11,094 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:11,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:40:11,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:40:11,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:12,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:12,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:12,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:12,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:40:12,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:40:12,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:13,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:13,138 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:13,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:13,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:40:13,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:40:13,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:13,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:13,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:13,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:13,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:40:13,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:40:13,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:17,481 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:17,482 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:17,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:17,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:40:17,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:40:17,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:17,807 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:17,824 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:17,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.390 +2025-10-02 06:40:17,914 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:40:17,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:40:18,154 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:18,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(801, 801, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:18,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.611 +2025-10-02 06:40:18,271 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:40:18,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:40:20,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:20,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:20,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:20,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:40:20,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:40:20,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:21,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:21,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:21,161 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:21,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:40:21,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:40:21,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:21,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:21,625 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:21,715 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.495 +2025-10-02 06:40:21,715 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:40:21,716 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:40:21,810 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:21,827 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:21,916 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.005 +2025-10-02 06:40:21,917 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:40:21,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:40:25,294 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:25,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:25,400 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.536 +2025-10-02 06:40:25,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 06:40:25,401 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:40:25,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:25,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:25,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:25,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:40:25,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:40:25,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:28,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:28,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:28,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:28,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:40:28,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:40:28,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:29,412 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:29,413 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:29,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:29,558 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:40:29,558 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:40:29,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:30,743 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:30,744 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:30,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:30,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:40:30,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:40:30,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:32,147 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:32,147 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:32,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:32,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:40:32,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:40:32,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:32,838 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:32,839 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:32,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:32,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:40:32,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:40:32,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:34,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:34,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:34,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:34,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:40:34,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:40:34,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:35,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:35,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:35,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:35,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:40:35,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:40:35,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:35,641 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:35,642 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:35,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:35,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:40:35,788 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:40:35,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:37,346 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:37,346 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:37,382 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:37,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:40:37,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:40:37,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:39,624 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:39,625 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:39,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:39,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:40:39,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:40:39,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:40,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:40,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:40,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:40,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:40:40,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:40:40,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:41,450 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:41,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:41,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:41,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-02 06:40:41,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-02 06:40:41,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:42,121 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:42,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:42,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:42,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:40:42,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:40:42,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:42,294 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:42,319 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:42,403 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.824 +2025-10-02 06:40:42,403 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:40:42,405 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:40:42,931 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:42,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:42,973 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:43,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:40:43,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:40:43,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:43,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:43,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:43,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:43,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:40:43,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:40:43,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:45,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:45,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:45,345 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:45,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:40:45,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:40:45,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:48,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:48,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:48,790 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:48,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:40:48,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:40:48,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:51,264 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:51,265 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:51,307 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:51,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:40:51,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:40:51,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:51,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:51,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:51,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:51,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:40:51,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:40:51,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:53,089 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:53,089 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:53,127 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:53,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:40:53,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:40:53,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:54,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:54,038 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:54,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:54,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:40:54,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:40:54,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:40:57,511 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:40:57,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:40:57,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:40:57,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 06:40:57,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 06:40:57,795 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:40:58,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:40:58,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:58,873 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:40:58,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:40:58,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:40:58,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:02,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:02,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:02,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:02,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:41:02,216 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:41:02,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:02,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:02,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:02,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:02,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:41:02,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:41:02,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:03,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:03,335 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:03,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:03,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:41:03,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:41:03,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:04,639 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:04,640 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:04,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:04,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:41:04,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:41:04,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:05,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:05,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:05,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:05,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:41:05,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:41:05,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:05,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:05,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:05,774 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:05,886 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:41:05,887 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:41:05,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:08,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:08,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:08,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:08,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:41:08,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:41:08,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:09,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:09,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:09,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:09,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:41:09,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:41:09,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:10,773 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:10,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:10,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:10,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:41:10,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:41:10,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:14,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:14,389 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:14,435 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:14,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:41:14,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:41:14,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:14,697 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:14,698 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:14,737 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:14,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:41:14,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:41:14,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:15,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:15,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:15,651 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:15,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:41:15,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:41:15,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:16,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:16,544 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:16,580 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:16,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:41:16,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:41:16,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:17,409 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:41:17,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:17,474 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:17,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 06:41:17,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 06:41:17,706 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:41:17,955 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:41:17,980 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:41:18,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.207 +2025-10-02 06:41:18,063 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:41:18,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:41:19,410 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:19,410 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:19,440 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:19,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:41:19,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:41:19,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:19,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:41:19,855 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:41:19,948 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.770 +2025-10-02 06:41:19,948 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.092s +2025-10-02 06:41:19,949 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 06:41:21,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:21,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:21,318 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:21,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 06:41:21,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 06:41:21,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:22,242 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:22,243 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:22,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:22,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:41:22,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:41:22,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:22,550 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:41:22,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:22,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:22,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-02 06:41:22,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +2025-10-02 06:41:22,813 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:41:23,244 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:41:23,244 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:23,302 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:23,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +2025-10-02 06:41:23,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.142s/image) +2025-10-02 06:41:23,530 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:41:24,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:24,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:24,559 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:24,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:41:24,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:41:24,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:26,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:26,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:26,693 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:26,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:41:26,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:41:26,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:28,636 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:28,637 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:28,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:28,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:41:28,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:41:28,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:29,140 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:41:29,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:29,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:29,419 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 06:41:29,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 06:41:29,419 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:41:29,965 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:29,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:30,010 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:30,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:41:30,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:41:30,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:31,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:31,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:31,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:31,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:41:31,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:41:31,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:34,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:34,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:34,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:34,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:41:34,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:41:34,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:34,842 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:41:34,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:34,892 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:35,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.279s +2025-10-02 06:41:35,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +2025-10-02 06:41:35,123 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:41:35,661 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:35,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:35,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:35,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:41:35,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:41:35,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:38,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:38,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:38,260 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:38,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:41:38,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:41:38,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:38,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:38,537 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:38,565 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:38,683 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:41:38,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:41:38,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:38,849 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:41:38,849 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:38,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:39,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 06:41:39,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.139s/image) +2025-10-02 06:41:39,127 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:41:41,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:41,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:41,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:41,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:41:41,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:41:41,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:42,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:42,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:42,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:42,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:41:42,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:41:42,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:43,577 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:43,578 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:43,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:43,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:41:43,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:41:43,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:44,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:44,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:44,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:44,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:41:44,387 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:41:44,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:44,736 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:41:44,767 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:41:44,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.891 +2025-10-02 06:41:44,850 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:41:44,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:41:45,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:45,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:45,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:45,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:41:45,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:41:45,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:45,726 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:45,727 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:45,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:45,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:41:45,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:41:45,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:47,381 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 06:41:47,381 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 06:41:47,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 06:41:47,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.416s +2025-10-02 06:41:47,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.416s (avg: 0.139s/image) +2025-10-02 06:41:47,798 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 06:41:48,310 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:41:48,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:48,365 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:48,587 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 06:41:48,587 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 06:41:48,587 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:41:49,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:49,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:49,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:49,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:41:49,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:41:49,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:52,903 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:52,904 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:52,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:53,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:41:53,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:41:53,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:53,191 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:53,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:53,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:53,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:41:53,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:41:53,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:54,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:54,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:54,848 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:54,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:41:54,969 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:41:54,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:55,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:55,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:55,237 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:55,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:41:55,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:41:55,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:55,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:55,519 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:55,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:55,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:41:55,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:41:55,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:56,184 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:56,185 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:56,220 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:56,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:41:56,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:41:56,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:57,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:57,043 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:57,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:57,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:41:57,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:41:57,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:58,646 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:58,647 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:58,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:58,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:41:58,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:41:58,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:41:58,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:41:58,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:41:59,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:41:59,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:41:59,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:41:59,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:00,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:00,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:00,038 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:00,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:42:00,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:42:00,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:01,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:01,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:01,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:01,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:42:01,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:42:01,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:02,237 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:42:02,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:42:02,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:42:02,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 06:42:02,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 06:42:02,516 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:42:02,913 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:02,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:02,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:03,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:42:03,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:42:03,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:06,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:06,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:06,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:06,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:42:06,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:42:06,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:07,522 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:07,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:07,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:07,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:42:07,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:42:07,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:07,831 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:07,832 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:07,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:07,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:42:07,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:42:07,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:08,127 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:42:08,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:42:08,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:42:08,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 06:42:08,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 06:42:08,419 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:42:08,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:08,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:08,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:08,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:42:08,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:42:08,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:10,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:10,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:10,955 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:11,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:42:11,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:42:11,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:11,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:11,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:11,510 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:11,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:42:11,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:42:11,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:16,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:16,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:16,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:16,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:42:16,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:42:16,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:22,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:22,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:22,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:22,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:42:22,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:42:22,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:26,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:26,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:26,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:26,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:42:26,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:42:26,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:27,828 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:27,828 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:27,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:27,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:42:27,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:42:27,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:29,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:29,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:29,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:29,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:42:29,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:42:29,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:33,766 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:42:33,794 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:42:33,875 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.731 +2025-10-02 06:42:33,875 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 06:42:33,876 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 06:42:34,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:34,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:34,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:34,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:42:34,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:42:34,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:38,141 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:38,141 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:38,177 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:38,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:42:38,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:42:38,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:38,351 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:42:38,376 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:42:38,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.007 +2025-10-02 06:42:38,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 06:42:38,453 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:42:39,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:39,428 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:39,472 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:39,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:42:39,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:42:39,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:40,220 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:40,221 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:40,253 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:40,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:42:40,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:42:40,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:41,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:41,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:42,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:42,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:42:42,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:42:42,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:43,693 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:43,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:43,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:43,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:42:43,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:42:43,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:44,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:44,682 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:44,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:44,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:42:44,843 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:42:44,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:45,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:45,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:45,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:45,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:42:45,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:42:45,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:46,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:46,779 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:46,812 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:46,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:42:46,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:42:46,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:47,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:47,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:47,439 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:47,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:42:47,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:42:47,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:48,066 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:48,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:48,104 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:48,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:42:48,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:42:48,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:50,878 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:50,879 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:50,909 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:51,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:42:51,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:42:51,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:51,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:51,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:51,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:51,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:42:51,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:42:51,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:53,469 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:53,469 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:53,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:53,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:42:53,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:42:53,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:55,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:55,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:55,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:55,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:42:55,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:42:55,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:56,262 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:56,262 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:56,296 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:56,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:42:56,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:42:56,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:57,059 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:42:57,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:42:57,107 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:42:57,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.268s +2025-10-02 06:42:57,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.268s (avg: 0.134s/image) +2025-10-02 06:42:57,329 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:42:58,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:58,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:58,659 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:58,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:42:58,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:42:58,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:42:59,157 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:42:59,158 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:59,203 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:42:59,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:42:59,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:42:59,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:01,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:01,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:01,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:01,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:43:01,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:43:01,499 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:02,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:02,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:02,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:02,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:43:02,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:43:02,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:02,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:43:02,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:43:03,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.129 +2025-10-02 06:43:03,049 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.069s +2025-10-02 06:43:03,049 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +2025-10-02 06:43:03,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:03,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:03,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:03,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:43:03,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:43:03,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:04,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:04,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:04,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:04,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:43:04,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:43:04,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:04,916 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:04,917 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:04,950 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:05,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:43:05,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:43:05,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:05,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:05,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:05,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:05,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:43:05,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:43:05,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:09,513 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:09,513 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:09,546 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:09,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:43:09,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:43:09,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:10,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:10,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:10,216 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:10,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:43:10,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:43:10,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:10,672 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:10,673 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:10,706 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:10,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:43:10,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:43:10,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:13,296 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:43:13,297 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:43:13,343 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:43:13,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 06:43:13,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.272s (avg: 0.136s/image) +2025-10-02 06:43:13,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:43:13,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:13,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:13,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:13,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:43:13,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:43:13,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:16,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:16,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:16,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:16,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:43:16,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:43:16,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:18,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:18,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:18,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:18,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:43:18,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:43:18,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:18,784 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:18,785 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:18,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:18,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:43:18,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:43:18,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:21,371 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:21,372 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:21,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:21,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:43:21,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:43:21,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:24,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:24,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:24,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:24,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:43:24,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:43:24,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:25,145 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:25,146 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:25,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:25,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:43:25,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:43:25,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:25,501 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:43:25,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:43:25,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:43:25,795 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 06:43:25,795 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 06:43:25,795 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:43:28,086 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:43:28,087 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:43:28,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:43:28,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 06:43:28,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.145s/image) +2025-10-02 06:43:28,378 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:43:32,062 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:32,062 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:32,098 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:32,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:43:32,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:43:32,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:33,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:33,053 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:33,089 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:33,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:43:33,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:43:33,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:33,596 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:33,597 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:33,635 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:33,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:43:33,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:43:33,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:34,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:34,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:34,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:34,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:43:34,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:43:34,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:35,525 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:35,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:35,556 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:35,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:43:35,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:43:35,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:38,480 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:38,481 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:38,517 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:38,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:43:38,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:43:38,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:41,234 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:41,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:41,270 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:41,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:43:41,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:43:41,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:41,760 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:41,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:41,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:41,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:43:41,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:43:41,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:43,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:43,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:43,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:44,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:43:44,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:43:44,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:48,072 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:48,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:48,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:48,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:43:48,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:43:48,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:48,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:48,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:49,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:49,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:43:49,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:43:49,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:49,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:49,573 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:49,607 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:49,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:43:49,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:43:49,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:50,332 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:50,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:50,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:50,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:43:50,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:43:50,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:51,849 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:51,850 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:51,876 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:51,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:43:51,986 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:43:51,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:54,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:54,564 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:54,596 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:54,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:43:54,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:43:54,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:55,391 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:55,392 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:55,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:55,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:43:55,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:43:55,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:55,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:55,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:55,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:55,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:43:55,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:43:55,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:56,431 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:43:56,455 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:43:56,537 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.895 +2025-10-02 06:43:56,537 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:43:56,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 06:43:58,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:58,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:58,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:58,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:43:58,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:43:58,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:59,355 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:43:59,355 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:59,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:43:59,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:43:59,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:43:59,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:43:59,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:43:59,929 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:44:00,004 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.079 +2025-10-02 06:44:00,004 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 06:44:00,004 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:44:02,267 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:02,267 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:02,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:02,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:44:02,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:44:02,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:03,365 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:03,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:03,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:03,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:44:03,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:44:03,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:03,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:44:03,797 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:44:03,870 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.842 +2025-10-02 06:44:03,871 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 06:44:03,871 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +2025-10-02 06:44:06,120 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:06,121 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:06,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:06,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:44:06,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:44:06,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:07,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:07,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:07,680 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:07,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:44:07,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:44:07,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:10,536 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:10,536 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:10,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:10,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:44:10,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:44:10,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:12,703 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:12,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:12,741 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:12,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:44:12,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:44:12,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:14,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:14,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:14,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:14,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:44:14,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:44:14,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:16,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:16,511 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:16,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:16,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:44:16,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:44:16,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:21,105 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:21,105 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:21,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:21,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:44:21,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:44:21,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:22,932 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:22,932 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:22,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:23,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:44:23,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:44:23,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:25,182 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:25,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:25,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:25,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 06:44:25,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 06:44:25,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:28,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:28,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:28,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:28,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:44:28,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:44:28,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:30,155 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:30,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:30,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:30,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:44:30,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:44:30,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:31,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:31,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:31,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:32,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:44:32,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:44:32,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:34,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:44:34,212 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:44:34,288 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.149 +2025-10-02 06:44:34,288 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:44:34,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 06:44:34,431 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:34,432 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:34,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:34,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:44:34,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:44:34,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:35,020 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:35,021 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:35,061 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:35,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:44:35,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:44:35,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:36,266 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:44:36,288 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:44:36,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.262 +2025-10-02 06:44:36,364 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:44:36,364 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 06:44:39,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:39,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:39,348 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:39,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:44:39,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:44:39,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:39,949 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:39,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:39,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:40,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:44:40,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:44:40,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:40,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:40,502 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:40,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:40,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:44:40,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:44:40,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:44,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:44,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:44,280 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:44,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:44:44,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:44:44,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:46,650 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:46,651 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:46,688 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:46,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:44:46,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:44:46,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:47,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:47,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:47,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:47,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:44:47,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:44:47,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:47,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:47,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:47,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:47,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:44:47,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:44:47,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:49,603 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:49,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:49,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:49,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:44:49,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:44:49,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:54,617 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:54,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:54,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:54,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:44:54,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:44:54,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:55,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:55,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:55,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:56,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:44:56,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:44:56,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:44:57,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:44:57,493 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:44:57,528 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:57,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:44:57,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:44:57,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:02,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:02,305 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:02,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:02,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:45:02,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:45:02,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:04,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:04,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:04,184 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:04,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:45:04,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:45:04,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:09,464 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:09,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:09,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:09,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:45:09,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:45:09,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:12,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:12,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:12,918 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:13,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:45:13,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:45:13,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:13,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:13,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:13,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:13,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:45:13,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:45:13,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:18,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:18,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:18,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:18,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:45:18,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:45:18,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:25,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:25,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:25,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:25,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:45:25,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:45:25,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:28,836 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:28,837 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:28,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:29,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:45:29,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:45:29,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:36,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:45:36,443 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:45:36,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.339 +2025-10-02 06:45:36,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:45:36,528 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:45:43,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:43,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:43,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:43,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:45:43,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:45:43,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:48,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:48,470 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:48,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:48,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:45:48,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:45:48,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:51,247 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:51,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:51,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:51,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:45:51,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:45:51,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:56,092 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:45:56,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(634, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:45:56,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.822 +2025-10-02 06:45:56,184 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:45:56,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:45:56,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:56,499 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:56,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:56,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:45:56,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:45:56,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:45:56,698 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:45:56,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:45:56,801 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.756 +2025-10-02 06:45:56,801 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:45:56,802 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:45:56,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:45:56,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:45:56,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:45:57,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:45:57,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:45:57,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:01,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:01,075 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(667, 667, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:01,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.378 +2025-10-02 06:46:01,151 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +2025-10-02 06:46:01,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +2025-10-02 06:46:01,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:01,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1128, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:01,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.092 +2025-10-02 06:46:01,786 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +2025-10-02 06:46:01,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:46:01,818 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:01,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:01,859 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:01,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:46:01,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:46:01,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:04,153 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:04,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:04,182 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:04,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:46:04,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:46:04,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:04,510 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:04,534 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:04,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.923 +2025-10-02 06:46:04,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:46:04,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:46:06,501 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:06,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:06,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.383 +2025-10-02 06:46:06,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:46:06,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:46:08,658 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:08,659 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:08,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:08,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:46:08,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:46:08,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:15,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:15,906 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:15,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:16,081 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:46:16,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:46:16,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:16,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:16,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:16,598 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:16,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:46:16,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:46:16,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:21,572 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:21,572 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:21,614 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:21,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.188s +2025-10-02 06:46:21,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.188s (avg: 0.188s/image) +2025-10-02 06:46:21,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:22,807 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:22,808 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:22,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:22,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:46:22,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:46:22,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:28,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:28,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:28,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:28,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:46:28,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:46:28,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:29,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:29,370 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:29,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:29,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:46:29,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:46:29,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:30,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:30,955 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:30,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:31,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:46:31,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:46:31,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:35,157 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:35,182 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:35,261 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.964 +2025-10-02 06:46:35,261 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:46:35,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 06:46:39,619 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:39,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:39,647 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:39,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:46:39,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:46:39,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:45,799 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:45,799 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:45,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:45,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:46:45,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:46:45,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:50,501 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:50,501 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:50,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:50,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:46:50,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:46:50,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:52,148 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:52,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:52,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:52,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:46:52,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:46:52,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:52,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:52,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:52,749 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:52,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:46:52,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:46:52,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:58,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:58,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:58,164 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:58,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:46:58,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:46:58,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:46:58,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:46:58,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:46:58,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:58,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:46:58,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:46:58,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:05,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:05,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:05,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:05,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:47:05,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:47:05,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:06,246 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:06,246 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:06,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:06,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:47:06,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:06,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:08,018 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:08,019 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:08,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:08,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:47:08,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:47:08,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:08,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:08,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:08,354 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:08,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:47:08,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:47:08,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:10,711 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:10,711 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:10,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:10,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:47:10,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:47:10,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:11,252 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:11,286 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:11,381 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.734 +2025-10-02 06:47:11,381 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.094s +2025-10-02 06:47:11,383 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +2025-10-02 06:47:12,943 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:47:12,943 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:12,993 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:47:13,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 06:47:13,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 06:47:13,222 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:47:15,255 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:15,281 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:15,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.969 +2025-10-02 06:47:15,362 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 06:47:15,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 06:47:16,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:16,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:16,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:16,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:47:16,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:47:16,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:16,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:16,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:16,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:17,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:47:17,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:17,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:17,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:17,188 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:17,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:17,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:47:17,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:47:17,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:17,971 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:17,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:18,008 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:18,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:47:18,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:18,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:18,763 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:18,763 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:18,795 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:18,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:47:18,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:18,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:19,130 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:19,151 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:19,240 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.795 +2025-10-02 06:47:19,241 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:47:19,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:47:22,315 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:22,316 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:22,359 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:22,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:47:22,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:47:22,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:22,802 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:22,803 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:22,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:22,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:47:22,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:47:22,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:24,550 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:47:24,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:24,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:47:24,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 06:47:24,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 06:47:24,846 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:47:25,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:25,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:25,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:26,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:47:26,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:47:26,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:26,635 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:47:26,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:26,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:47:26,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.290s +2025-10-02 06:47:26,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.290s (avg: 0.145s/image) +2025-10-02 06:47:26,927 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:47:27,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:27,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:27,150 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:27,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:47:27,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:47:27,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:28,998 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:28,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:29,030 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:29,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:47:29,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:47:29,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:30,406 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:30,407 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:30,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:30,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:47:30,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:47:30,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:30,737 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:30,738 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:30,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:30,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:47:30,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:47:30,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:31,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:31,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:31,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:31,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:47:31,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:47:31,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:31,517 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:31,518 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:31,554 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:31,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:47:31,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:47:31,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:33,030 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:33,031 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:33,068 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:33,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:47:33,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:47:33,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:35,167 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:47:35,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:35,221 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:47:35,450 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 06:47:35,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 06:47:35,451 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:47:35,935 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:35,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:35,968 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:36,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:47:36,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:47:36,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:37,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:37,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:37,617 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:37,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:47:37,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:47:37,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:39,094 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:47:39,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:39,149 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:47:39,377 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.282s +2025-10-02 06:47:39,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.282s (avg: 0.141s/image) +2025-10-02 06:47:39,378 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:47:39,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:39,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:39,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:39,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:47:39,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:47:39,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:40,842 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:40,865 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:40,947 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.028 +2025-10-02 06:47:40,948 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:47:40,950 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:47:42,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:42,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:42,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:42,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:47:42,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:47:42,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:43,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:43,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:43,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:43,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:47:43,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:47:43,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:43,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:43,612 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:43,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:43,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:47:43,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:43,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:43,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:43,925 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:43,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:44,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:47:44,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:47:44,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:45,342 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:45,369 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:45,455 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.103 +2025-10-02 06:47:45,455 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:47:45,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:47:46,328 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:46,328 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:46,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:46,503 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:47:46,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:47:46,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:46,676 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:46,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:46,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:46,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:47:46,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:47:46,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:48,136 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:48,137 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:48,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:48,288 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:47:48,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:47:48,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:49,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:50,005 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:50,094 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.523 +2025-10-02 06:47:50,095 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 06:47:50,096 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:47:50,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:50,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:50,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:50,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:47:50,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:47:50,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:51,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:51,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:51,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:51,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:47:51,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:47:51,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:54,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:54,674 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:54,709 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:54,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:47:54,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:47:54,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:56,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:56,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:56,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:56,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:47:56,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:47:56,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:56,884 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:56,885 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:56,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:57,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:47:57,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:47:57,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:57,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:57,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:57,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:57,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:47:57,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:57,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:57,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:57,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:57,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:57,684 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:47:57,684 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:47:57,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:58,139 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:58,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:58,167 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:58,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:47:58,283 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:47:58,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:59,512 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:59,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:59,549 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:47:59,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:47:59,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:47:59,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:47:59,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:47:59,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:59,925 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:00,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:48:00,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:48:00,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:00,370 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:00,371 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:00,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:00,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:48:00,509 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:48:00,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:00,728 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:00,728 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:00,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:00,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 06:48:00,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 06:48:00,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:02,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:02,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:02,938 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:03,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:48:03,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:48:03,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:03,216 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:48:03,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:48:03,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:48:03,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 06:48:03,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.148s/image) +2025-10-02 06:48:03,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:48:06,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:06,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:06,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:06,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 06:48:06,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 06:48:06,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:06,935 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:48:06,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:48:06,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:48:07,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 06:48:07,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 06:48:07,206 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:48:10,475 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:10,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:10,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:10,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 06:48:10,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 06:48:10,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:10,781 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:48:10,802 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 749, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:48:10,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.988 +2025-10-02 06:48:10,881 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:48:10,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 06:48:11,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:11,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:12,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:12,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:48:12,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:48:12,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:16,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:16,734 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:16,773 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:16,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:48:16,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:48:16,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:18,216 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:18,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:18,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:18,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:48:18,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:48:18,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:18,537 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:18,538 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:18,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:18,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:48:18,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:48:18,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:19,414 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:48:19,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:48:19,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:48:19,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.275s +2025-10-02 06:48:19,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.275s (avg: 0.138s/image) +2025-10-02 06:48:19,692 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:48:24,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:24,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:24,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:24,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:48:24,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:48:24,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:26,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:26,257 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:26,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:26,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +2025-10-02 06:48:26,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-02 06:48:26,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:26,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:26,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:26,840 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:26,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:48:26,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:48:26,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:29,637 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:48:29,658 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:48:29,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.683 +2025-10-02 06:48:29,742 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:48:29,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:48:30,865 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:30,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:30,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:31,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:48:31,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:48:31,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:32,084 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:48:32,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:48:32,145 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:48:32,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 06:48:32,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 06:48:32,383 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:48:32,840 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:32,841 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:32,877 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:32,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:48:32,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:48:32,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:36,244 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:36,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:36,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:36,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:48:36,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:48:36,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:37,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:37,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:37,606 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:37,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:48:37,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:48:37,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:38,312 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:38,313 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:38,347 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:38,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:48:38,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:48:38,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:38,643 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:38,644 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:38,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:38,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:48:38,800 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:48:38,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:41,482 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:41,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:41,516 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:41,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:48:41,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:48:41,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:43,855 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:43,855 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:43,893 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:44,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:48:44,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:48:44,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:45,300 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:45,301 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:45,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:45,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:48:45,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:48:45,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:46,578 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:46,579 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:46,610 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:46,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:48:46,728 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:48:46,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:47,835 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:47,836 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:47,871 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:47,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:48:47,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:48:47,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:49,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:49,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:49,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:49,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:48:49,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:48:49,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:50,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:50,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:50,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:50,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:48:50,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:48:50,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:48:57,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:48:57,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:48:57,461 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:48:57,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:48:57,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:48:57,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:01,181 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:01,182 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:01,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:01,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:49:01,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:49:01,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:01,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:01,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:01,927 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:02,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:49:02,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:49:02,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:03,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:03,458 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:03,495 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:03,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:49:03,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:49:03,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:06,656 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:06,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:06,687 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:06,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:49:06,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:49:06,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:09,180 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:09,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:09,212 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:09,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:49:09,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:49:09,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:09,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:09,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:09,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:09,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:49:09,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:49:09,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:11,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:11,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:11,478 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:11,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:49:11,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:49:11,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:12,956 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:12,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:12,990 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:13,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:49:13,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:49:13,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:13,602 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:13,602 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:13,632 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:13,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:49:13,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:49:13,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:14,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:14,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:14,169 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:14,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:49:14,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:49:14,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:18,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:18,467 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:18,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:18,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:49:18,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:49:18,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:18,801 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:18,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:18,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:18,937 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:49:18,937 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:49:18,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:19,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:19,236 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:19,267 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:19,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:49:19,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:49:19,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:19,898 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:19,899 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:19,935 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:20,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:49:20,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:49:20,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:20,225 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:20,226 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:20,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:20,372 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:49:20,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:49:20,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:24,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:24,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:24,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:24,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:49:24,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:49:24,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:24,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:24,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:24,919 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:25,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:49:25,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:49:25,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:27,041 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:27,041 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:27,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:27,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:49:27,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:49:27,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:28,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:28,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:28,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:28,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:49:28,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:49:28,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:29,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:29,023 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:29,060 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:29,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:49:29,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:49:29,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:32,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:32,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:32,121 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:32,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:49:32,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:49:32,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:32,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:32,987 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:33,020 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:33,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:49:33,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:49:33,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:33,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:33,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:33,561 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:33,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:49:33,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:49:33,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:35,999 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:35,999 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:36,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:36,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:49:36,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:49:36,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:37,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:37,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:37,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:37,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:49:37,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:49:37,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:40,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:40,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:40,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:40,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:49:40,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:49:40,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:40,964 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:40,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:41,001 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:41,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:49:41,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:49:41,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:41,905 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:41,905 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:41,937 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:42,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:49:42,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:49:42,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:46,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:46,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:46,414 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:46,527 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:49:46,527 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:49:46,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:47,540 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:47,541 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:47,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:47,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:49:47,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:49:47,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:49,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:49,862 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:49,900 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:50,022 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:49:50,022 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:49:50,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:50,692 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:49:50,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:49:50,745 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:49:50,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 06:49:50,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-02 06:49:50,970 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:49:53,187 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:53,187 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:53,229 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:53,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:49:53,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:49:53,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:49:55,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:49:55,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:49:55,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:55,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:49:55,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:49:55,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:05,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:05,251 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:05,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:05,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:50:05,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:50:05,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:05,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:05,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:05,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:05,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:50:05,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:50:05,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:07,196 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:07,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:07,311 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.000 +2025-10-02 06:50:07,311 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:50:07,313 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 06:50:09,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:09,632 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:09,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:09,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:50:09,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:50:09,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:14,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:14,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:14,543 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:14,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:50:14,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:50:14,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:15,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:15,634 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:15,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:15,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:50:15,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:50:15,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:16,576 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:16,577 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:16,608 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:16,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:50:16,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:50:16,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:17,382 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:17,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:17,411 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:17,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:50:17,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:50:17,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:20,882 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:20,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:20,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.429 +2025-10-02 06:50:20,989 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:50:20,991 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:50:21,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:21,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:21,172 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:21,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:50:21,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:50:21,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:22,002 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:22,002 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:22,033 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:22,154 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:50:22,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:50:22,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:23,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:23,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:23,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:23,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:50:23,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:50:23,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:25,092 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:25,093 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:25,137 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:25,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:50:25,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:50:25,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:25,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:25,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:25,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:25,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:50:25,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:50:25,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:29,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:29,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:29,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:29,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:50:29,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:50:29,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:30,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:30,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:30,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:30,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:50:30,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:50:30,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:30,709 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:30,710 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:30,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:30,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:50:30,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:50:30,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:34,338 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:34,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:34,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:34,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:50:34,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:50:34,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:35,321 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:35,322 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:35,355 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:35,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:50:35,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:50:35,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:37,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:37,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:37,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:37,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:50:37,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:50:37,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:37,894 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:37,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:37,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:38,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:50:38,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:50:38,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:39,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:39,813 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:39,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.224 +2025-10-02 06:50:39,903 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:50:39,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 06:50:40,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:40,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:40,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:40,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:50:40,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:50:40,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:43,311 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:43,331 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:43,419 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.405 +2025-10-02 06:50:43,420 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:50:43,421 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:50:43,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:43,821 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:43,865 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:43,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:50:43,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:50:43,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:44,229 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:44,230 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:44,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:44,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:50:44,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:50:44,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:44,532 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:50:44,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:50:44,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:50:44,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-02 06:50:44,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +2025-10-02 06:50:44,794 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:50:46,196 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:46,197 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:46,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:46,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:50:46,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:50:46,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:46,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:46,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:46,844 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.885 +2025-10-02 06:50:46,844 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 06:50:46,846 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:50:48,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:48,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:48,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:48,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:50:48,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:50:48,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:52,665 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:52,666 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:52,723 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:52,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.187s +2025-10-02 06:50:52,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.187s (avg: 0.187s/image) +2025-10-02 06:50:52,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:53,671 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:50:53,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:50:53,731 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:50:53,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.292s +2025-10-02 06:50:53,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.292s (avg: 0.146s/image) +2025-10-02 06:50:53,964 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:50:54,787 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:54,788 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:54,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:54,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:50:54,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:50:54,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:56,116 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:56,144 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:56,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.448 +2025-10-02 06:50:56,233 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:50:56,234 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:50:56,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:56,638 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:56,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:56,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:50:56,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:50:56,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:58,360 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:58,360 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:58,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:58,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:50:58,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:50:58,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:50:58,823 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:50:58,824 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:58,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:58,969 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:50:58,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:50:58,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:00,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:00,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:00,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:00,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:51:00,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:51:00,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:03,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:03,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:03,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:03,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:51:03,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:03,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:04,759 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:04,759 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:04,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:04,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:51:04,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:51:04,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:05,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:05,217 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:05,302 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.467 +2025-10-02 06:51:05,302 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:51:05,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:51:05,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:05,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:05,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:05,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:51:05,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:05,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:07,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:07,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:07,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:07,723 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:51:07,723 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:51:07,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:07,879 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:07,880 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:07,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:08,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:51:08,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:08,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:10,278 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:10,279 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:10,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:10,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:51:10,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:51:10,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:10,588 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:10,589 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:10,619 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:10,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:51:10,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:51:10,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:12,515 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:51:12,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:51:12,569 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:51:12,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.291s +2025-10-02 06:51:12,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.291s (avg: 0.146s/image) +2025-10-02 06:51:12,808 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:51:13,574 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:13,575 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:13,615 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:13,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:51:13,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:51:13,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:15,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:15,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:15,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:15,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:51:15,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:51:15,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:15,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:15,894 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:16,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.917 +2025-10-02 06:51:16,001 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +2025-10-02 06:51:16,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-02 06:51:16,749 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:16,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:16,784 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:16,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:51:16,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:51:16,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:21,147 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:21,179 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:21,286 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.822 +2025-10-02 06:51:21,286 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +2025-10-02 06:51:21,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-02 06:51:21,477 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:51:21,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:51:21,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:51:21,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 06:51:21,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 06:51:21,762 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:51:21,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:21,931 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:21,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:22,074 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:51:22,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:51:22,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:22,223 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:22,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:22,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:22,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:51:22,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:51:22,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:22,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:22,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:22,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:22,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:51:22,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:51:22,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:23,060 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:23,061 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:23,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:23,218 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:51:23,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:51:23,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:25,203 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:25,204 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:25,242 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:25,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:51:25,372 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:51:25,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:26,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:26,345 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:26,380 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:26,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:51:26,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:51:26,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:29,053 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:29,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:29,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:29,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:51:29,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:29,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:30,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:30,075 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:30,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:30,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:51:30,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:51:30,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:30,769 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:30,770 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:30,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:30,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:51:30,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:51:30,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:33,343 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:33,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:33,399 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:33,525 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:51:33,526 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:51:33,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:34,075 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:34,076 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:34,112 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:34,236 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:51:34,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:51:34,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:34,405 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:34,406 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:34,448 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:34,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:51:34,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:51:34,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:35,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:35,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:35,605 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:35,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:51:35,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:51:35,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:36,368 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:36,369 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:36,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:36,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:51:36,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:51:36,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:36,813 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:36,813 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:36,858 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:36,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:51:36,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:51:36,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:38,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:38,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:39,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:39,144 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:51:39,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:51:39,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:39,539 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:39,540 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:39,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:39,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:51:39,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:51:39,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:40,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:40,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:40,368 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:40,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:51:40,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:51:40,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:40,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:40,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:40,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:41,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:51:41,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:51:41,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:42,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:42,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:42,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:42,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:51:42,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:51:42,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:42,870 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:42,870 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:42,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:43,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:51:43,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:51:43,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:44,871 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:44,872 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:44,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:45,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:51:45,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:51:45,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:46,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:46,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:46,837 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:46,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:51:46,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:51:46,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:48,566 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:48,566 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:48,624 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:48,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.193s +2025-10-02 06:51:48,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.193s (avg: 0.193s/image) +2025-10-02 06:51:48,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:49,248 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:49,249 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:49,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:49,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:51:49,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:51:49,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:49,816 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:49,841 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:49,928 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.558 +2025-10-02 06:51:49,928 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 06:51:49,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:51:50,140 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:50,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:50,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:50,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:51:50,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:51:50,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:50,626 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:50,626 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:50,670 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:50,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:51:50,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:51:50,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:50,910 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:50,930 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:51,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.808 +2025-10-02 06:51:51,014 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:51:51,016 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:51:51,293 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:51,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:51,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:51,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:51:51,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:51,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:51,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:51,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:51,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:51,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:51:51,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:51:51,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:54,622 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:54,623 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:54,667 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:54,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.194s +2025-10-02 06:51:54,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.194s (avg: 0.194s/image) +2025-10-02 06:51:54,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:55,056 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:55,077 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:55,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.532 +2025-10-02 06:51:55,156 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:51:55,156 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:51:56,696 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:56,697 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:56,732 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:56,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 06:51:56,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.289s (avg: 0.289s/image) +2025-10-02 06:51:56,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:57,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:57,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:57,375 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:57,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:51:57,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:51:57,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:58,883 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:58,883 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:58,916 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:59,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:51:59,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:51:59,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:59,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:51:59,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:59,539 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:59,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:51:59,660 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:51:59,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:51:59,699 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:59,716 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:59,801 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.615 +2025-10-02 06:51:59,801 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:51:59,802 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:52:00,399 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:00,400 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:00,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:00,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:52:00,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:52:00,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:01,100 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:01,101 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:01,135 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:01,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:52:01,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:52:01,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:01,859 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:52:01,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:01,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:02,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.276s +2025-10-02 06:52:02,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.276s (avg: 0.138s/image) +2025-10-02 06:52:02,137 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:52:03,408 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:03,430 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:52:03,515 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.479 +2025-10-02 06:52:03,515 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:52:03,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:52:03,542 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:03,543 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:03,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:03,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:52:03,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:52:03,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:04,162 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:04,186 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:52:04,259 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.192 +2025-10-02 06:52:04,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 06:52:04,260 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 06:52:06,161 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:06,162 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:06,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:06,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:52:06,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:52:06,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:06,580 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:06,581 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:06,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:06,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:52:06,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:52:06,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:07,072 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:52:07,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:07,141 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:07,392 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.318s +2025-10-02 06:52:07,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.318s (avg: 0.159s/image) +2025-10-02 06:52:07,392 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:52:07,804 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:07,840 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:52:07,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.906 +2025-10-02 06:52:07,918 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 06:52:07,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:52:09,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:09,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:09,757 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:09,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 06:52:09,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 06:52:09,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:10,451 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:52:10,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:10,513 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:10,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.307s +2025-10-02 06:52:10,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.307s (avg: 0.154s/image) +2025-10-02 06:52:10,759 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:52:10,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:10,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:10,988 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:11,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:52:11,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:52:11,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:11,376 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:11,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:52:11,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.937 +2025-10-02 06:52:11,469 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.072s +2025-10-02 06:52:11,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 06:52:12,729 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:12,729 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:12,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:12,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:52:12,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:52:12,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:14,531 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:14,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:14,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:14,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:52:14,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:52:14,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:15,029 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:15,029 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:15,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:15,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:52:15,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:52:15,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:17,669 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:17,670 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:17,713 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:17,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:52:17,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:52:17,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:18,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:18,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:18,054 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:18,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:52:18,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:52:18,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:18,341 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:52:18,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:18,391 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:18,606 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.264s +2025-10-02 06:52:18,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.264s (avg: 0.132s/image) +2025-10-02 06:52:18,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:52:21,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:21,383 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:21,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:21,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:52:21,552 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:52:21,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:21,900 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:21,900 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:21,929 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:22,046 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:52:22,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:52:22,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:24,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:24,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:24,050 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:24,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:52:24,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:52:24,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:25,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:25,025 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:25,067 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:25,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:52:25,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:52:25,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:25,717 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:25,751 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:52:25,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.436 +2025-10-02 06:52:25,833 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +2025-10-02 06:52:25,835 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 06:52:26,195 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:26,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:26,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:26,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:52:26,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:52:26,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:27,290 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:27,291 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:27,319 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:27,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:52:27,431 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:52:27,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:28,208 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:28,209 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:28,249 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:28,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:52:28,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:52:28,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:30,259 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:30,259 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:30,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:30,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:52:30,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:52:30,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:30,821 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:30,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:30,857 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:30,988 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:52:30,989 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:52:30,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:32,222 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:32,223 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:32,258 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:32,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:52:32,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:52:32,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:32,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:32,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:32,849 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:32,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:52:32,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:52:32,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:34,183 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:34,184 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:34,217 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:34,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:52:34,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:52:34,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:37,228 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:37,229 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:37,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:37,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:52:37,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:52:37,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:38,079 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:38,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:38,116 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:38,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:52:38,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:52:38,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:39,928 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:39,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:39,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:40,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:52:40,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:52:40,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:43,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:43,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:43,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:43,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:52:43,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:52:43,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:45,820 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:45,820 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:45,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:45,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:52:45,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:52:45,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:46,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:46,683 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:46,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:46,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:52:46,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:52:46,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:47,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:47,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:47,625 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:47,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:52:47,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:52:47,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:49,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:49,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:49,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:49,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:52:49,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:52:49,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:49,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:49,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:49,633 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:49,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:52:49,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:52:49,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:49,921 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:49,922 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:49,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:50,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:52:50,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:52:50,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:52,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:52,778 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:52,814 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:52,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:52:52,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:52:52,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:53,253 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:52:53,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:53,295 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:53,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.258s +2025-10-02 06:52:53,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.258s (avg: 0.129s/image) +2025-10-02 06:52:53,512 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:52:55,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:55,506 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:55,551 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:55,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:52:55,680 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:52:55,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:56,200 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:56,200 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:56,236 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:56,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:52:56,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:52:56,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:56,934 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:56,935 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:56,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:57,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:52:57,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:52:57,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:57,984 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:57,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:58,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:58,139 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:52:58,139 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:52:58,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:58,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:58,804 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:58,838 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:58,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:52:58,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:52:58,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:59,457 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:59,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:59,493 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:59,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:52:59,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:52:59,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:52:59,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:52:59,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:59,775 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:59,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:52:59,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:52:59,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:00,800 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:00,801 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:00,836 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:00,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:53:00,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:53:00,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:03,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:03,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:03,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:03,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:53:03,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:53:03,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:04,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:04,658 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:04,699 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:04,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:53:04,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:53:04,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:05,633 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:05,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:05,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:05,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:53:05,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:53:05,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:06,333 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:06,333 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:06,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:06,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:53:06,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:53:06,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:06,782 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:06,783 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:06,820 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:06,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:53:06,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:53:06,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:07,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:07,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:07,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:08,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:53:08,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:53:08,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:08,047 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:53:08,072 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:53:08,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.261 +2025-10-02 06:53:08,156 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:53:08,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:53:10,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:10,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:10,473 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:10,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:53:10,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:53:10,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:13,181 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:53:13,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:53:13,294 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.320 +2025-10-02 06:53:13,295 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:53:13,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:53:16,189 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:53:16,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:53:16,251 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:53:16,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 06:53:16,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 06:53:16,490 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:53:16,675 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:16,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:16,722 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:16,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:53:16,845 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:53:16,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:17,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:17,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:17,311 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:17,437 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:53:17,437 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:53:17,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:18,519 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:18,520 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:18,567 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:18,696 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:53:18,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:53:18,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:19,500 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:53:19,542 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:53:19,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.086 +2025-10-02 06:53:19,630 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:53:19,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 06:53:20,612 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:20,613 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:20,653 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:20,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:53:20,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:53:20,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:22,741 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:22,742 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:22,781 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:22,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:53:22,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:53:22,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:23,936 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:23,937 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:23,978 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:24,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:53:24,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:53:24,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:24,440 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:24,441 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:24,477 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:24,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:53:24,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:53:24,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:25,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:25,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:25,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:25,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:53:25,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:53:25,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:25,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:25,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:25,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:25,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:53:25,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:53:25,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:26,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:26,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:26,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:26,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:53:26,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:53:26,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:28,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:28,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:28,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:28,689 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 06:53:28,689 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 06:53:28,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:30,308 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:30,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:30,352 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:30,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:53:30,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:53:30,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:32,485 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:32,486 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:32,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:32,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-02 06:53:32,683 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-02 06:53:32,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:33,215 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:33,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:33,257 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:33,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:53:33,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:53:33,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:33,546 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:33,547 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:33,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:33,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:53:33,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:53:33,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:34,617 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:53:34,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:53:34,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:53:34,919 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 06:53:34,920 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 06:53:34,920 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:53:36,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:36,142 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:36,181 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:36,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:53:36,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:53:36,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:37,155 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:53:37,177 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:53:37,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.801 +2025-10-02 06:53:37,267 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:53:37,269 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:53:40,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:40,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:40,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:40,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:53:40,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:53:40,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:41,166 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:41,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:41,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:41,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:53:41,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:53:41,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:41,488 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:41,489 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:41,525 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:41,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:53:41,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:53:41,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:42,946 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:42,946 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:42,977 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:43,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:53:43,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:53:43,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:44,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:44,774 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:44,809 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:44,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:53:44,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:53:44,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:45,427 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:45,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:45,462 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:45,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:53:45,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:53:45,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:46,085 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:46,086 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:46,124 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:46,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:53:46,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:53:46,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:46,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:46,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:47,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:47,133 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.137s +2025-10-02 06:53:47,133 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.137s (avg: 0.137s/image) +2025-10-02 06:53:47,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:51,844 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:51,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:51,895 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:52,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:53:52,024 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:53:52,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:52,609 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:53:52,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:53:52,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:53:52,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.320s +2025-10-02 06:53:52,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.320s (avg: 0.160s/image) +2025-10-02 06:53:52,931 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:53:53,119 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:53,120 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:53,157 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:53,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:53:53,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:53:53,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:53,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:53,431 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:53,466 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:53,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:53:53,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:53:53,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:53,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:53,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:53,785 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:53,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:53:53,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:53:53,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:54,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:54,302 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:54,340 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:54,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:53:54,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:53:54,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:58,340 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:53:58,341 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:58,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:58,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:53:58,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:53:58,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:53:58,690 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:53:58,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:53:58,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:53:59,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-02 06:53:59,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.322s (avg: 0.161s/image) +2025-10-02 06:53:59,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:54:00,526 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:54:00,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:00,588 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:00,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 06:54:00,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.147s/image) +2025-10-02 06:54:00,821 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:54:05,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:05,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:05,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:05,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:54:05,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 06:54:05,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:05,670 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:05,671 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:05,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:05,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:54:05,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:54:05,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:06,989 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:06,989 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:07,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:07,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:54:07,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:54:07,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:10,534 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:10,535 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:10,577 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:10,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:54:10,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:54:10,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:11,366 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:54:11,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:11,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:11,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 06:54:11,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 06:54:11,656 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:54:12,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:12,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:12,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:12,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:54:12,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 06:54:12,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:13,316 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:13,317 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:13,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:13,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:54:13,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:54:13,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:14,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:14,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:14,115 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:14,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:54:14,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:54:14,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:16,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:16,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:16,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:16,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:54:16,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:54:16,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:17,808 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:17,809 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:17,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:17,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:54:17,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:54:17,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:18,587 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:54:18,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:18,648 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:18,882 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 06:54:18,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 06:54:18,883 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:54:19,217 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:19,218 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:19,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:19,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:54:19,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:54:19,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:21,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:21,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:21,550 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:21,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:54:21,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:54:21,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:22,620 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:22,621 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:22,679 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:22,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.184s +2025-10-02 06:54:22,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.184s (avg: 0.184s/image) +2025-10-02 06:54:22,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:23,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:23,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:23,783 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:23,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:54:23,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:54:23,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:28,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:28,424 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:28,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:28,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:54:28,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:54:28,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:28,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:28,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:28,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:29,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:54:29,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:54:29,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:30,732 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:30,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:30,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:30,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:54:30,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:54:30,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:31,239 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:54:31,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:31,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:31,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.267s +2025-10-02 06:54:31,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.267s (avg: 0.134s/image) +2025-10-02 06:54:31,508 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:54:33,194 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:33,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:33,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:33,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:54:33,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:54:33,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:33,690 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:33,691 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:33,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:33,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:54:33,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:54:33,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:35,714 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:35,715 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:35,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:35,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:54:35,876 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:54:35,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:38,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:38,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:38,085 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:38,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:54:38,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:54:38,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:39,027 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:54:39,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:39,093 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:39,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-02 06:54:39,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.156s/image) +2025-10-02 06:54:39,341 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:54:40,494 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:40,495 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:40,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:40,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:54:40,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:54:40,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:42,238 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:42,238 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:42,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:42,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:54:42,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:54:42,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:43,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:43,066 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:43,103 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:43,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:54:43,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:54:43,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:44,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:44,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:44,323 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:44,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:54:44,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:54:44,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:45,689 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:45,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:45,729 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:45,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:54:45,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:54:45,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:47,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:47,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:47,853 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:47,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:54:47,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:54:47,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:49,569 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:49,570 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:49,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:49,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:54:49,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:54:49,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:49,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:49,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:49,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:50,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:54:50,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:54:50,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:52,579 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:52,580 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:52,642 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:52,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:54:52,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 06:54:52,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:54,492 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:54,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:54,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:54,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:54:54,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:54:54,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:55,704 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:55,704 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:55,746 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:55,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:54:55,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:54:55,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:56,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:56,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:56,673 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:56,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:54:56,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:54:56,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:57,526 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:57,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:57,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:57,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:54:57,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:54:57,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:54:58,825 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:54:58,859 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:54:58,947 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.939 +2025-10-02 06:54:58,947 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:54:58,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 06:54:59,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:54:59,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:59,777 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:59,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:54:59,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:54:59,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:02,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:02,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:02,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:02,880 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:55:02,880 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:55:02,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:06,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:06,398 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:06,429 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:06,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:55:06,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:55:06,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:07,815 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:55:07,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:55:07,878 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:55:08,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 06:55:08,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.150s/image) +2025-10-02 06:55:08,117 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:55:08,666 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:55:08,692 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:55:08,785 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.389 +2025-10-02 06:55:08,785 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:55:08,787 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +2025-10-02 06:55:09,135 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:09,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:09,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:09,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:55:09,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:55:09,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:12,331 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:12,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:12,366 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:12,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:55:12,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:55:12,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:12,649 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:55:12,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:55:12,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:55:12,928 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 06:55:12,928 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 06:55:12,929 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:55:13,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:13,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:14,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:14,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:55:14,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:55:14,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:20,056 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:20,056 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:20,100 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:20,224 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:55:20,224 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:55:20,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:20,394 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:20,395 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:20,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:20,592 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.196s +2025-10-02 06:55:20,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.196s (avg: 0.196s/image) +2025-10-02 06:55:20,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:21,509 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:21,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:21,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:21,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:55:21,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:55:21,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:25,908 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:25,909 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:25,946 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:26,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:55:26,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:55:26,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:27,638 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:27,639 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:27,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:27,786 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:55:27,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:55:27,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:28,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:28,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:28,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:28,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:55:28,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:55:28,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:28,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:28,420 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:28,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:28,562 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 06:55:28,562 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 06:55:28,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:32,077 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:32,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:32,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:32,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:55:32,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:55:32,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:34,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:34,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:34,657 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:34,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:55:34,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:55:34,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:37,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:37,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:37,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:37,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:55:37,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:55:37,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:41,924 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:41,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:41,948 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:42,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:55:42,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 06:55:42,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:42,212 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:42,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:42,246 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:42,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:55:42,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:55:42,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:46,846 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:46,846 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:46,880 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:47,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:55:47,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:55:47,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:48,955 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:48,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:48,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:49,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:55:49,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:55:49,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:49,515 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:49,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:49,552 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:49,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:55:49,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 06:55:49,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:49,895 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:49,896 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:49,932 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:50,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:55:50,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:55:50,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:51,944 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:51,945 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:51,989 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:52,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:55:52,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 06:55:52,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:53,557 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:53,558 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:53,600 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:53,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:55:53,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:55:53,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:55,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:55,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:55,123 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:55,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:55:55,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:55:55,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:55,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:55,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:55,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:55,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:55:55,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 06:55:55,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:56,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:56,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:56,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:56,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:55:56,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 06:55:56,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:57,611 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:57,611 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:57,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:57,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:55:57,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:55:57,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:55:59,036 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:55:59,037 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:55:59,070 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:59,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:55:59,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:55:59,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:00,314 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:00,315 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:00,351 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:00,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:56:00,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:56:00,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:01,602 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:01,616 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:01,690 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.434 +2025-10-02 06:56:01,690 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.074s +2025-10-02 06:56:01,691 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:56:01,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:01,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:01,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:01,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.131s +2025-10-02 06:56:01,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.131s (avg: 0.131s/image) +2025-10-02 06:56:01,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:03,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:03,447 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:03,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:03,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:56:03,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:56:03,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:05,968 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:05,969 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:05,997 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:06,118 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:56:06,118 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:56:06,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:07,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:07,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:07,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:07,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:56:07,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:56:07,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:07,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:07,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:07,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:07,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:56:07,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:56:07,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:10,177 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:10,178 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:10,241 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:10,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:56:10,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.183s (avg: 0.183s/image) +2025-10-02 06:56:10,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:11,502 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:11,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:11,533 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:11,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:56:11,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:56:11,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:13,010 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:13,011 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:13,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:13,143 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 06:56:13,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 06:56:13,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:15,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:15,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:15,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:15,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:56:15,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:56:15,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:17,947 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:17,948 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:17,983 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:18,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:56:18,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:56:18,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:20,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:20,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:20,321 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:20,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:56:20,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:56:20,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:22,123 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:56:22,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:56:22,176 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:56:22,403 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.278s +2025-10-02 06:56:22,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.278s (avg: 0.139s/image) +2025-10-02 06:56:22,403 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:56:22,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:22,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:22,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:22,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:56:22,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:56:22,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:23,001 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:23,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:23,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:23,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:56:23,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:56:23,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:23,169 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:23,184 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:23,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.510 +2025-10-02 06:56:23,258 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.073s +2025-10-02 06:56:23,259 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +2025-10-02 06:56:24,630 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:24,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:24,668 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:24,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:56:24,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:56:24,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:27,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:27,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:28,013 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:28,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 06:56:28,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 06:56:28,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:28,543 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:28,545 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:28,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:28,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:56:28,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:56:28,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:28,731 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:28,749 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:28,830 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.258 +2025-10-02 06:56:28,830 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 06:56:28,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:56:33,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:34,014 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:34,106 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.942 +2025-10-02 06:56:34,106 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:56:34,108 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +2025-10-02 06:56:34,449 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:34,450 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:34,497 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:34,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 06:56:34,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:56:34,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:34,796 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:34,796 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:34,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:34,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:56:34,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:56:34,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:35,115 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:35,116 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:35,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:35,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:56:35,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:56:35,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:35,720 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:35,721 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:35,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:35,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:56:35,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:56:35,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:37,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:37,361 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:37,401 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:37,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:56:37,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:56:37,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:38,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:38,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:38,123 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.066 +2025-10-02 06:56:38,123 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:56:38,125 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:56:38,629 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:38,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:38,677 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:38,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:56:38,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:56:38,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:40,438 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:40,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:40,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:40,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:56:40,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:56:40,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:41,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:41,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:41,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:41,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:56:41,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 06:56:41,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:43,911 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:43,911 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:43,945 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:44,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:56:44,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:56:44,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:46,827 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:46,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:46,862 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:46,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:56:46,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:56:46,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:47,565 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:47,589 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:47,670 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.925 +2025-10-02 06:56:47,671 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 06:56:47,673 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 06:56:49,025 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:49,026 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:49,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:49,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:56:49,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:56:49,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:50,024 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:50,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:50,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:50,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:56:50,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:56:50,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:50,334 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:50,334 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:50,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:50,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:56:50,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:56:50,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:50,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:50,707 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:50,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:50,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:56:50,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:56:50,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:51,144 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:51,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:51,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:51,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:56:51,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:56:51,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:51,448 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:51,465 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:51,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.311 +2025-10-02 06:56:51,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 06:56:51,548 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:56:56,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:56,143 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:56,178 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:56,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:56:56,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:56:56,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:56:56,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:56,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:56,853 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.817 +2025-10-02 06:56:56,853 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 06:56:56,855 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:56:57,239 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:56:57,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:57,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:57,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:56:57,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:56:57,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:00,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:00,753 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:00,801 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:00,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.177s +2025-10-02 06:57:00,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.177s (avg: 0.177s/image) +2025-10-02 06:57:00,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:03,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:03,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:03,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:03,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:57:03,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:57:03,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:04,074 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:04,074 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:04,108 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:04,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:57:04,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:04,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:05,003 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:05,003 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:05,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:05,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:57:05,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:57:05,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:05,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:05,924 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:05,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:06,095 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:57:06,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:57:06,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:14,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:14,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:14,209 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:14,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:57:14,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:14,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:16,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:16,160 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:16,197 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:16,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:57:16,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:16,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:20,453 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:20,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:20,490 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:20,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:57:20,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:57:20,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:27,642 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:27,643 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:27,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:27,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:57:27,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:57:27,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:27,829 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:57:27,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(927, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:57:27,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=242.242 +2025-10-02 06:57:27,939 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 06:57:27,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:57:29,752 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:57:29,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:57:29,862 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.163 +2025-10-02 06:57:29,862 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.086s +2025-10-02 06:57:29,864 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 06:57:30,325 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:30,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:30,362 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:30,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:57:30,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:57:30,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:30,863 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:30,864 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:30,912 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:31,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:57:31,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:57:31,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:31,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:31,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:31,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:31,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:57:31,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:57:31,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:34,570 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:34,571 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:34,612 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:34,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:57:34,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:57:34,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:34,906 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:34,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:34,942 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:35,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:57:35,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:57:35,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:35,206 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:35,207 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:35,243 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:35,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:57:35,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:57:35,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:35,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:57:35,558 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:57:35,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.637 +2025-10-02 06:57:35,635 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 06:57:35,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 06:57:37,990 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:37,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:38,028 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:38,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:57:38,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:38,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:39,777 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:57:39,801 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:57:39,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.975 +2025-10-02 06:57:39,885 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:57:39,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:57:41,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:41,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:41,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:41,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:57:41,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:57:41,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:41,722 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:41,723 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:41,752 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:41,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:57:41,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:57:41,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:43,294 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:43,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:43,329 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:43,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:57:43,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:43,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:43,977 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:43,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:44,011 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:44,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:57:44,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:57:44,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:44,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:44,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:44,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:44,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:57:44,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:57:44,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:46,092 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:57:46,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:57:46,151 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:57:46,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 06:57:46,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-02 06:57:46,386 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:57:46,881 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:46,881 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:46,917 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:47,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:57:47,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:57:47,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:48,498 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:48,498 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:48,536 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:48,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:57:48,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:57:48,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:50,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:50,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:50,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:50,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:57:50,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:50,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:51,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:51,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:51,047 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:51,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:57:51,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:57:51,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:54,734 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:54,735 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:54,771 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:54,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:57:54,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:57:54,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:55,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:55,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:55,206 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:55,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:57:55,323 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:57:55,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:55,654 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:55,654 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:55,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:55,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:57:55,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:57:55,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:56,031 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:56,032 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:56,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:56,184 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:57:56,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:57:56,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:57,490 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:57,491 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:57,531 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:57,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:57:57,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:57:57,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:57:59,451 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:57:59,451 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:59,489 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:59,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:57:59,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:57:59,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:00,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:00,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:00,751 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:00,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:58:00,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:58:00,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:06,043 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:06,044 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:06,080 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:06,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:58:06,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:58:06,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:06,886 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:06,887 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:06,920 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:07,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:58:07,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:58:07,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:11,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:11,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:11,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:11,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:58:11,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:58:11,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:11,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:11,677 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:11,718 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:11,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:58:11,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:58:11,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:14,478 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:14,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:14,518 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:14,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:58:14,648 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:58:14,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:15,154 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:15,155 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:15,189 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:15,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:58:15,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:58:15,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:15,353 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:58:15,380 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(750, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:58:15,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.720 +2025-10-02 06:58:15,470 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 06:58:15,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:58:16,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:16,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:16,210 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:16,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:58:16,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:58:16,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:18,210 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:58:18,237 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:58:18,329 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.424 +2025-10-02 06:58:18,329 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.091s +2025-10-02 06:58:18,331 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 06:58:20,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:20,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:20,778 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:20,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.195s +2025-10-02 06:58:20,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.195s (avg: 0.195s/image) +2025-10-02 06:58:20,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:21,616 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:21,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:21,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:21,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:58:21,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:58:21,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:22,082 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:22,083 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:22,119 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:22,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:58:22,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:58:22,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:23,980 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:23,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:24,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:24,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:58:24,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:24,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:25,691 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:25,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:25,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:25,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:58:25,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:58:25,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:30,218 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:30,219 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:30,263 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:30,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:58:30,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:58:30,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:31,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:31,631 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:31,661 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:31,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:58:31,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:58:31,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:34,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:34,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:34,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:34,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:58:34,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:34,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:35,366 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:35,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:35,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:35,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:58:35,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:58:35,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:38,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:38,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:38,506 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:38,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:58:38,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:58:38,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:39,227 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:39,228 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:39,254 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:39,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 06:58:39,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 06:58:39,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:41,344 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:41,344 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:41,384 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:41,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:58:41,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:41,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:42,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:42,199 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:42,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:42,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:58:42,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:58:42,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:47,495 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:47,496 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:47,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:47,658 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:58:47,658 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:47,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:47,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:47,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:47,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:48,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:58:48,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:58:48,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:50,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:50,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:50,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:50,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:58:50,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:58:50,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:51,938 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:51,939 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:51,972 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:52,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:58:52,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:58:52,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:53,118 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:53,118 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:53,156 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:53,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:58:53,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:58:53,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:55,428 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:55,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:55,469 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:55,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:58:55,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:55,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:55,932 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:58:55,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:58:56,041 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.358 +2025-10-02 06:58:56,041 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 06:58:56,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 06:58:56,404 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:56,405 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:56,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:56,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:58:56,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:58:56,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:56,747 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:56,748 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:56,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:56,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:58:56,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:58:56,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:57,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:57,494 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:57,547 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:57,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:58:57,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:58:57,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:58,080 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:58,080 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:58,118 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:58,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:58:58,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:58:58,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:58:58,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:58:58,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:58,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:58,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:58:58,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:58:58,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:01,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:01,599 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:01,631 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:01,756 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:59:01,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:59:01,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:02,844 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:59:02,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:59:02,905 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:59:03,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 06:59:03,145 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 06:59:03,146 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:59:05,171 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:05,172 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:05,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:05,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:59:05,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:59:05,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:06,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:06,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:06,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:06,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:59:06,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:59:06,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:06,688 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:06,689 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:06,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:06,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:59:06,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:59:06,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:08,717 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:08,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:08,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:08,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:59:08,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:59:08,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:09,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:09,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:09,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:09,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:59:09,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:59:09,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:09,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:09,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:09,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:09,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:59:09,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:59:09,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:09,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:09,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:10,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:10,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:59:10,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:59:10,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:10,713 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:10,714 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:10,759 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:10,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:59:10,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:59:10,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:12,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:12,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:12,284 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:12,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:59:12,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:59:12,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:13,160 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:13,161 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:13,192 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:13,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 06:59:13,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:59:13,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:13,730 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:13,731 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:13,767 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:13,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:59:13,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:59:13,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:15,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:15,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:15,062 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:15,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 06:59:15,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:59:15,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:15,837 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:15,838 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:15,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:16,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:59:16,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:59:16,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:18,289 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:18,290 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:18,336 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:18,461 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:59:18,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:59:18,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:18,618 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:18,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:18,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:18,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:59:18,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:59:18,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:19,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:19,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:19,534 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:19,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:59:19,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:59:19,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:20,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:20,700 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:20,730 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:20,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:59:20,846 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:59:20,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:21,951 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:21,952 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:21,982 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:22,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:59:22,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:59:22,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:22,839 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:22,840 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:22,879 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:23,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:59:23,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:59:23,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:23,359 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:23,359 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:23,394 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:23,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:59:23,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:59:23,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:24,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:24,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:24,165 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:24,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:59:24,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:24,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:28,205 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:59:28,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:59:28,255 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:59:28,485 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.280s +2025-10-02 06:59:28,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.280s (avg: 0.140s/image) +2025-10-02 06:59:28,486 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:59:29,224 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:29,225 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:29,261 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:29,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:59:29,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:59:29,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:30,277 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:30,278 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:30,326 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:30,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 06:59:30,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 06:59:30,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:33,963 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:33,964 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:33,998 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:34,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:59:34,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:59:34,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:34,868 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:34,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:34,908 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:35,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:59:35,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:59:35,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:35,388 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:35,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:35,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:35,533 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:59:35,534 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:59:35,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:36,387 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:36,388 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:36,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:36,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:59:36,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:36,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:37,607 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:37,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:37,643 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:37,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:59:37,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:59:37,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:39,209 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:39,210 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:39,240 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:39,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:59:39,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:59:39,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:39,503 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:39,504 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:39,532 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:39,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:59:39,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:59:39,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:41,432 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:41,433 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:41,463 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:41,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:59:41,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:59:41,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:43,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:43,464 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:43,499 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:43,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:59:43,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:43,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:44,138 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:44,139 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:44,171 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:44,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:59:44,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:59:44,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:47,140 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 06:59:47,140 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:59:47,183 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:59:47,410 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.269s +2025-10-02 06:59:47,410 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.269s (avg: 0.135s/image) +2025-10-02 06:59:47,410 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 06:59:47,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:47,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:47,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:47,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:59:47,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:59:47,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:49,014 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:49,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:49,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:49,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:59:49,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:59:49,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:49,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:49,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:49,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:49,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:59:49,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:59:49,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:50,198 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:50,198 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:50,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:50,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:59:50,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:50,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:51,789 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:51,790 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:51,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:51,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 06:59:51,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 06:59:51,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:52,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:52,115 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:52,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:52,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:59:52,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 06:59:52,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:52,615 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:52,616 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:52,646 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:52,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:59:52,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:59:52,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:54,253 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:54,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:54,286 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:54,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:59:54,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:59:54,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:56,271 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:56,272 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:56,313 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:56,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:59:56,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.179s (avg: 0.179s/image) +2025-10-02 06:59:56,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:56,594 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:56,595 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:56,630 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:56,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:59:56,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:59:56,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 06:59:57,361 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 06:59:57,362 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:57,396 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:59:57,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:59:57,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:57,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:01,150 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:01,151 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:01,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:01,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:00:01,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:00:01,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:02,088 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:02,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:02,120 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:02,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:00:02,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:00:02,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:02,383 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:02,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:02,422 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:02,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 07:00:02,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:00:02,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:05,970 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:05,971 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:06,007 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:06,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:00:06,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:00:06,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:11,977 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:00:12,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:00:12,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.625 +2025-10-02 07:00:12,087 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 07:00:12,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 07:00:20,246 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:00:20,247 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:00:20,300 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:00:20,536 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.289s +2025-10-02 07:00:20,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.145s/image) +2025-10-02 07:00:20,537 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:00:21,295 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:21,295 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:21,335 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:21,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 07:00:21,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 07:00:21,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:22,190 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:22,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:22,224 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:22,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:00:22,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:00:22,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:25,169 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:25,170 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:25,204 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:25,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 07:00:25,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:00:25,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:27,652 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:27,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:27,682 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:27,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 07:00:27,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:00:27,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:30,164 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:30,164 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:30,205 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:30,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:00:30,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:00:30,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:34,644 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:34,645 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:34,690 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:34,822 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.176s +2025-10-02 07:00:34,822 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.176s (avg: 0.176s/image) +2025-10-02 07:00:34,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:35,454 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:35,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:35,485 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:35,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:00:35,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:00:35,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:35,994 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:35,995 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:36,034 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:36,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 07:00:36,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:00:36,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:39,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:39,914 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:39,952 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:40,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 07:00:40,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:00:40,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:42,678 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:42,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:42,711 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:42,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:00:42,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:00:42,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:43,957 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:43,958 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:43,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:44,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:00:44,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:00:44,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:46,158 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:00:46,178 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:00:46,258 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.181 +2025-10-02 07:00:46,259 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 07:00:46,259 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 07:00:48,794 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:48,794 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:48,827 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:48,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 07:00:48,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:00:48,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:52,725 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:52,726 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:52,762 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:52,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:00:52,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:00:52,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:00:53,561 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:00:53,601 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:00:53,680 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.120 +2025-10-02 07:00:53,680 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.078s +2025-10-02 07:00:53,682 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 07:00:53,702 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:00:53,703 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:00:53,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:00:53,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 07:00:53,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 07:00:53,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:00,479 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:00,479 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:00,512 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:00,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 07:01:00,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:01:00,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:02,657 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:02,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:02,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:02,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:01:02,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:01:02,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:07,533 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:07,534 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:07,572 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:07,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 07:01:07,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:01:07,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:13,339 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:13,339 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:13,379 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:13,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:01:13,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:01:13,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:19,112 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:19,113 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:19,159 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:19,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 07:01:19,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 07:01:19,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:19,429 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:19,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:19,460 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:19,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:01:19,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:01:19,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:22,385 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:22,386 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:22,441 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:22,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.181s +2025-10-02 07:01:22,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.181s (avg: 0.181s/image) +2025-10-02 07:01:22,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:23,872 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:23,915 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:24,006 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.141 +2025-10-02 07:01:24,006 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 07:01:24,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 07:01:24,686 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:01:24,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:01:24,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:01:25,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.317s +2025-10-02 07:01:25,004 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.317s (avg: 0.159s/image) +2025-10-02 07:01:25,005 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:01:25,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:25,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:25,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:25,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 07:01:25,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 07:01:25,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:27,892 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:27,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:27,933 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:28,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 07:01:28,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 07:01:28,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:29,046 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:29,047 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:29,078 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:29,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:01:29,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:01:29,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:32,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:32,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:32,232 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:32,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 07:01:32,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 07:01:32,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:32,719 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:32,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:32,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:32,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:01:32,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:01:32,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:38,467 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:38,468 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:38,514 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:38,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 07:01:38,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 07:01:38,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:39,178 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:01:39,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:01:39,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:01:39,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +2025-10-02 07:01:39,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +2025-10-02 07:01:39,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:01:39,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:39,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:39,786 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:39,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:01:39,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:01:39,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:43,799 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:43,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:43,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.179 +2025-10-02 07:01:43,909 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.082s +2025-10-02 07:01:43,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 07:01:44,407 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:01:44,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:01:44,465 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:01:44,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.298s +2025-10-02 07:01:44,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.298s (avg: 0.149s/image) +2025-10-02 07:01:44,706 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:01:46,841 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:46,842 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:46,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:46,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 07:01:46,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:01:46,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:47,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:47,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:47,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.062 +2025-10-02 07:01:47,379 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 07:01:47,380 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +2025-10-02 07:01:49,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:49,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:49,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:49,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 07:01:49,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:01:49,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:49,666 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:49,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:49,717 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:49,837 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 07:01:49,838 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 07:01:49,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:51,923 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:51,923 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:51,964 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:52,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 07:01:52,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 07:01:52,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:53,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:53,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:53,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.462 +2025-10-02 07:01:53,554 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.089s +2025-10-02 07:01:53,555 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 07:01:54,123 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:54,124 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:54,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:54,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:01:54,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:01:54,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:54,506 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:54,507 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:54,548 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:54,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 07:01:54,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:01:54,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:55,066 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:55,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:55,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.779 +2025-10-02 07:01:55,171 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 07:01:55,173 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 07:01:55,207 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:55,208 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:55,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:55,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 07:01:55,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 07:01:55,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:55,538 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:55,539 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:55,568 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:55,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:01:55,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:01:55,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:01:56,815 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:01:56,816 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:56,854 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:01:56,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:01:56,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:01:56,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:00,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:00,152 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:00,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:00,308 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:02:00,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:02:00,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:00,477 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:00,477 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:00,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:00,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 07:02:00,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.135s (avg: 0.135s/image) +2025-10-02 07:02:00,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:00,756 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:00,756 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:00,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:00,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 07:02:00,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 07:02:00,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:01,069 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:01,070 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:01,097 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:01,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 07:02:01,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 07:02:01,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:01,375 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:01,375 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:01,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:01,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 07:02:01,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 07:02:01,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:01,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:01,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:01,691 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:01,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 07:02:01,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 07:02:01,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:02,008 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:02,009 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:02,039 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:02,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 07:02:02,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:02:02,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:04,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:04,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:04,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:05,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 07:02:05,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 07:02:05,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:06,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:06,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:07,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:07,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:02:07,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:02:07,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:07,659 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:07,660 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:07,689 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:07,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:02:07,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:02:07,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:07,984 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:02:07,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:02:08,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:02:08,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 07:02:08,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.300s (avg: 0.150s/image) +2025-10-02 07:02:08,285 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:02:08,981 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:08,982 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:09,023 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:09,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 07:02:09,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:02:09,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:10,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:10,304 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:10,341 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:10,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 07:02:10,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:02:10,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:11,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:11,034 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:02:11,110 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.905 +2025-10-02 07:02:11,111 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +2025-10-02 07:02:11,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 07:02:11,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:11,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:11,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:12,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 07:02:12,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:02:12,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:12,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:12,636 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:12,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:12,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:02:12,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:02:12,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:15,606 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:15,607 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:15,637 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:15,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:02:15,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:02:15,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:15,903 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:15,927 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:02:16,015 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.337 +2025-10-02 07:02:16,015 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 07:02:16,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +2025-10-02 07:02:16,039 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:16,040 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:16,083 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:16,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 07:02:16,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 07:02:16,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:17,023 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:17,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:17,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:17,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 07:02:17,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 07:02:17,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:17,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:17,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:17,842 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:17,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:02:17,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:02:17,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:19,426 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:19,427 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:19,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:19,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 07:02:19,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 07:02:19,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:19,702 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:19,721 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:02:19,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.518 +2025-10-02 07:02:19,809 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 07:02:19,811 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 07:02:20,283 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:20,284 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:20,315 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:20,428 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 07:02:20,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 07:02:20,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:22,276 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:02:22,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:02:22,330 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:02:22,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.293s +2025-10-02 07:02:22,570 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.293s (avg: 0.146s/image) +2025-10-02 07:02:22,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:02:22,942 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:22,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:22,985 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:23,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 07:02:23,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:02:23,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:23,595 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:23,596 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:23,644 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:23,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.192s +2025-10-02 07:02:23,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.192s (avg: 0.192s/image) +2025-10-02 07:02:23,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:24,078 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:24,104 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:02:24,189 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.350 +2025-10-02 07:02:24,190 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 07:02:24,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 07:02:26,058 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:26,059 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:26,088 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:26,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:02:26,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:02:26,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:26,822 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:26,822 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:26,860 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:26,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 07:02:26,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:02:26,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:27,869 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:27,869 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:27,904 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:28,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:02:28,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:02:28,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:28,507 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:28,508 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:28,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:28,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 07:02:28,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.144s (avg: 0.144s/image) +2025-10-02 07:02:28,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:29,274 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:29,275 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:29,304 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:29,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 07:02:29,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:02:29,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:30,583 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:30,584 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:30,618 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:30,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:02:30,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:02:30,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:31,411 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:31,412 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:31,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:31,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 07:02:31,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:02:31,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:31,972 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:31,973 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:32,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:32,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 07:02:32,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:02:32,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:32,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:32,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:32,504 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:32,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:02:32,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:02:32,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:36,165 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:36,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:36,196 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:36,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 07:02:36,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:02:36,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:36,663 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:36,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:36,692 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:36,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 07:02:36,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +2025-10-02 07:02:36,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:37,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:37,751 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:37,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:37,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.173s +2025-10-02 07:02:37,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +2025-10-02 07:02:37,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:39,070 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:39,071 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:39,106 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:39,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:02:39,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:02:39,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:41,282 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:41,283 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:41,316 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:41,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:02:41,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:02:41,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:43,692 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:43,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:43,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:43,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 07:02:43,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 07:02:43,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:44,035 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:44,036 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:44,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:44,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 07:02:44,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:02:44,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:44,337 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:44,337 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:44,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:44,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.141s +2025-10-02 07:02:44,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.141s (avg: 0.141s/image) +2025-10-02 07:02:44,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:44,740 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:02:44,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:02:44,789 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:02:45,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.270s +2025-10-02 07:02:45,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.270s (avg: 0.135s/image) +2025-10-02 07:02:45,012 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:02:46,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:46,768 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:46,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:46,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +2025-10-02 07:02:46,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 07:02:46,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:49,134 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:49,135 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:49,170 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:49,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 07:02:49,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:02:49,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:49,572 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:49,595 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:02:49,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.607 +2025-10-02 07:02:49,675 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 07:02:49,677 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +2025-10-02 07:02:51,480 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:51,509 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:02:51,598 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.192 +2025-10-02 07:02:51,598 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.088s +2025-10-02 07:02:51,599 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +2025-10-02 07:02:52,320 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:02:52,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:02:52,371 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:02:52,607 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 07:02:52,607 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 07:02:52,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:02:53,007 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:53,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:53,037 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:53,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 07:02:53,153 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 07:02:53,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:54,015 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:54,016 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:54,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:54,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 07:02:54,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 07:02:54,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:54,505 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:54,505 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:54,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:54,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:02:54,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:02:54,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:56,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:56,635 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:56,663 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:56,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 07:02:56,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 07:02:56,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:56,897 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:56,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:56,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:57,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:02:57,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:02:57,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:02:59,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:02:59,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:59,459 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:59,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 07:02:59,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:02:59,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:00,582 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:00,583 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:00,613 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:00,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 07:03:00,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:03:00,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:01,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:01,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:01,520 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:01,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.129s +2025-10-02 07:03:01,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.129s (avg: 0.129s/image) +2025-10-02 07:03:01,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:03,326 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:03,327 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:03,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:03,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 07:03:03,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:03:03,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:06,700 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:06,701 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:06,748 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:06,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 07:03:06,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 07:03:06,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:07,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:07,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:07,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:07,285 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.132s +2025-10-02 07:03:07,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.132s (avg: 0.132s/image) +2025-10-02 07:03:07,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:07,414 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:03:07,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:03:07,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:03:07,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 07:03:07,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.148s/image) +2025-10-02 07:03:07,712 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:03:10,103 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:03:10,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:03:10,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:03:10,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.313s +2025-10-02 07:03:10,419 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.157s/image) +2025-10-02 07:03:10,419 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:03:11,379 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:11,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:11,412 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:11,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.133s +2025-10-02 07:03:11,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.133s (avg: 0.133s/image) +2025-10-02 07:03:11,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:12,558 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:12,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:12,591 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:12,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:03:12,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:03:12,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:13,175 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:13,176 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:13,218 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:13,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:03:13,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:03:13,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:14,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:14,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:14,358 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:14,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:03:14,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:03:14,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:14,651 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:03:14,652 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:03:14,708 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:03:14,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.288s +2025-10-02 07:03:14,941 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.288s (avg: 0.144s/image) +2025-10-02 07:03:14,941 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:03:15,107 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:15,108 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:15,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:15,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.119s +2025-10-02 07:03:15,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.119s (avg: 0.119s/image) +2025-10-02 07:03:15,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:15,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:15,366 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:15,405 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:15,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:03:15,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:03:15,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:15,770 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:15,771 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:15,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:15,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:03:15,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:03:15,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:16,746 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:16,747 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:16,782 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:16,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:03:16,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:03:16,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:17,226 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:17,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:17,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:17,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:03:17,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:03:17,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:17,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:17,915 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:17,956 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:18,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:03:18,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:03:18,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:20,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:20,231 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:20,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:20,400 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 07:03:20,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 07:03:20,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:21,101 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:21,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:21,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:21,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:03:21,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:03:21,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:21,397 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:21,397 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:21,428 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:21,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 07:03:21,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 07:03:21,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:21,660 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:21,661 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:21,678 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:21,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.116s +2025-10-02 07:03:21,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.116s (avg: 0.116s/image) +2025-10-02 07:03:21,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:24,272 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:24,273 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:24,306 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:24,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 07:03:24,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.139s (avg: 0.139s/image) +2025-10-02 07:03:24,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:24,877 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:24,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:24,910 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:25,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 07:03:25,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:03:25,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:26,017 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:26,018 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:26,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:26,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:03:26,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:03:26,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:27,716 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:27,717 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:27,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:27,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:03:27,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:03:27,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:28,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:28,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:28,370 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:28,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:03:28,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:03:28,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:30,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:30,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:30,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:30,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 07:03:30,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 07:03:30,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:31,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:31,351 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:31,386 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:31,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:03:31,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:03:31,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:32,600 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:32,601 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:32,640 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:32,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 07:03:32,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:03:32,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:33,129 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:33,130 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:33,168 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:33,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 07:03:33,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:03:33,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:34,395 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:34,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:34,431 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:34,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:03:34,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:03:34,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:35,204 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:35,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:35,244 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:35,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:03:35,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:03:35,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:35,948 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:35,949 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:35,984 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:36,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 07:03:36,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:03:36,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:36,285 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:36,286 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:36,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:36,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:03:36,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:03:36,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:36,610 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:36,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:36,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:36,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 07:03:36,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 07:03:36,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:36,889 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:36,889 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:36,923 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:37,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:03:37,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:03:37,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:41,178 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:41,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:41,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:41,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 07:03:41,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 07:03:41,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:41,559 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:41,560 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:41,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:41,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 07:03:41,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:03:41,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:42,489 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:42,490 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:42,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:42,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 07:03:42,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:03:42,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:43,695 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:43,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:43,726 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:43,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 07:03:43,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 07:03:43,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:44,170 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:44,171 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:44,208 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:44,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:03:44,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:03:44,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:44,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:03:44,382 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:03:44,462 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.558 +2025-10-02 07:03:44,463 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 07:03:44,465 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 07:03:44,941 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:44,942 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:44,986 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:45,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 07:03:45,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:03:45,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:45,384 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:03:45,415 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:03:45,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.322 +2025-10-02 07:03:45,504 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.087s +2025-10-02 07:03:45,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +2025-10-02 07:03:46,764 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:46,764 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:46,802 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:46,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 07:03:46,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 07:03:46,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:47,604 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:47,605 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:47,652 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:47,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +2025-10-02 07:03:47,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-02 07:03:47,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:48,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:48,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:49,006 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:49,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 07:03:49,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 07:03:49,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:49,925 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:49,926 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:49,962 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:50,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:03:50,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:03:50,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:50,407 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:50,408 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:50,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:50,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:03:50,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:03:50,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:53,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:03:53,205 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:03:53,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.647 +2025-10-02 07:03:53,287 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +2025-10-02 07:03:53,289 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +2025-10-02 07:03:53,679 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:53,679 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:53,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:53,848 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 07:03:53,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 07:03:53,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:54,250 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:54,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:54,279 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:54,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:03:54,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:03:54,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:54,872 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:54,873 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:54,915 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:55,062 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.189s +2025-10-02 07:03:55,062 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.189s (avg: 0.189s/image) +2025-10-02 07:03:55,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:55,765 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:55,766 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:55,803 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:55,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 07:03:55,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:03:55,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:57,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:03:57,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:03:58,036 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.356 +2025-10-02 07:03:58,036 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +2025-10-02 07:03:58,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +2025-10-02 07:03:58,567 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:58,568 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:58,599 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:58,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 07:03:58,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:03:58,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:03:59,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:03:59,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:00,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:00,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 07:04:00,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 07:04:00,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:00,313 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:00,314 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:00,344 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:00,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 07:04:00,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:04:00,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:00,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:04:00,505 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:04:00,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.412 +2025-10-02 07:04:00,589 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.083s +2025-10-02 07:04:00,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +2025-10-02 07:04:00,752 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:00,754 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:00,792 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:00,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:04:00,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:04:00,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:01,078 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:01,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:01,114 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:01,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:04:01,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:04:01,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:03,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:03,792 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:03,833 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:03,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 07:04:03,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 07:04:03,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:05,114 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:05,114 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:05,146 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:05,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 07:04:05,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:04:05,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:07,006 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:07,007 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:07,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:07,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 07:04:07,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 07:04:07,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:07,533 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:04:07,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:07,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:07,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.297s +2025-10-02 07:04:07,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.297s (avg: 0.149s/image) +2025-10-02 07:04:07,832 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:04:09,084 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:09,085 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:09,126 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:09,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:04:09,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:04:09,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:10,099 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:10,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:10,136 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:10,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 07:04:10,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 07:04:10,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:13,249 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:13,250 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:13,294 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:13,429 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +2025-10-02 07:04:13,429 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 07:04:13,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:13,779 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:13,780 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:13,811 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:13,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:04:13,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:04:13,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:15,373 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:15,373 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:15,404 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:15,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:04:15,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:04:15,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:16,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:16,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:16,843 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:16,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:04:16,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:04:16,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:17,470 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:17,471 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:17,509 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:17,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 07:04:17,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:04:17,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:20,030 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:04:20,030 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:20,075 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:20,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.271s +2025-10-02 07:04:20,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.271s (avg: 0.135s/image) +2025-10-02 07:04:20,302 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:04:21,589 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:21,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:21,622 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:21,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 07:04:21,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 07:04:21,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:22,348 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:22,348 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:22,377 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:22,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:04:22,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:04:22,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:25,525 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:04:25,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:25,581 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:25,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 07:04:25,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.295s (avg: 0.147s/image) +2025-10-02 07:04:25,821 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:04:26,342 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:26,343 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:26,390 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:26,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 07:04:26,514 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 07:04:26,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:27,463 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:27,463 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:27,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:27,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:04:27,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:04:27,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:29,767 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:29,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:29,817 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:29,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 07:04:29,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 07:04:29,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:30,231 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:30,232 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:30,265 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:30,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 07:04:30,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:04:30,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:30,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:04:30,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:04:30,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.008 +2025-10-02 07:04:30,723 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.085s +2025-10-02 07:04:30,726 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +2025-10-02 07:04:31,033 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:31,033 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:31,076 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:31,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 07:04:31,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 07:04:31,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:31,985 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:31,985 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:32,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:32,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:04:32,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:04:32,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:32,774 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:32,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:32,806 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:32,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 07:04:32,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:04:32,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:34,439 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:34,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:34,468 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:34,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 07:04:34,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.138s (avg: 0.138s/image) +2025-10-02 07:04:34,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:34,966 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:34,967 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:35,003 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:35,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 07:04:35,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:04:35,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:35,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:04:35,180 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:04:35,260 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.178 +2025-10-02 07:04:35,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 07:04:35,263 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 07:04:35,514 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:35,515 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:35,555 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:35,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 07:04:35,685 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 07:04:35,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:37,430 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:37,430 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:37,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:37,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:04:37,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:04:37,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:40,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:40,312 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:40,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:40,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 07:04:40,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 07:04:40,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:40,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:04:40,809 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:04:40,893 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.914 +2025-10-02 07:04:40,894 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +2025-10-02 07:04:40,894 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 07:04:41,065 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:41,065 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:41,111 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:41,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 07:04:41,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 07:04:41,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:43,027 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:43,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:43,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:43,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 07:04:43,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 07:04:43,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:44,111 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:44,112 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:44,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:44,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:04:44,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:04:44,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:44,420 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:44,421 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:44,454 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:44,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:04:44,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:04:44,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:45,164 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:04:45,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:45,230 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:45,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.311s +2025-10-02 07:04:45,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.311s (avg: 0.155s/image) +2025-10-02 07:04:45,476 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:04:45,962 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:45,963 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:45,996 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:46,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:04:46,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:04:46,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:46,271 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:04:46,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:46,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:46,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.241s +2025-10-02 07:04:46,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.241s (avg: 0.121s/image) +2025-10-02 07:04:46,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:04:47,958 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:47,959 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:48,002 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:48,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:04:48,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:04:48,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:48,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:48,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:48,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:48,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 07:04:48,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 07:04:48,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:50,210 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:50,211 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:50,238 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:50,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 07:04:50,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 07:04:50,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:51,013 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:04:51,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:51,074 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:51,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.303s +2025-10-02 07:04:51,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +2025-10-02 07:04:51,318 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:04:51,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:51,523 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:51,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:51,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:04:51,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:04:51,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:52,416 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:52,417 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:52,447 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:52,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 07:04:52,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:04:52,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:52,751 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:52,752 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:52,791 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:52,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:04:52,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:04:52,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:53,483 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:53,483 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:53,524 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:53,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 07:04:53,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:04:53,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:55,081 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:55,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:55,122 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:55,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 07:04:55,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 07:04:55,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:55,568 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:04:55,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:55,621 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:55,846 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.277s +2025-10-02 07:04:55,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.277s (avg: 0.138s/image) +2025-10-02 07:04:55,847 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:04:56,694 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:56,695 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:56,735 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:56,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:04:56,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:04:56,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:57,723 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:57,724 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:57,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:57,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 07:04:57,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:04:57,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:58,335 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:58,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:58,369 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:58,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 07:04:58,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:04:58,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:04:58,742 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:04:58,743 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:58,770 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:58,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 07:04:58,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.136s (avg: 0.136s/image) +2025-10-02 07:04:58,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:00,189 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:00,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:00,233 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:00,364 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.174s +2025-10-02 07:05:00,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.174s (avg: 0.174s/image) +2025-10-02 07:05:00,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:00,548 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:00,549 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:00,578 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:00,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:05:00,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:05:00,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:00,861 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:00,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:00,888 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:01,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 07:05:01,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 07:05:01,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:01,381 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:01,382 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:01,434 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:01,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 07:05:01,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 07:05:01,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:02,472 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:02,473 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:02,515 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:02,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 07:05:02,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:05:02,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:03,185 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:03,186 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:03,226 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:03,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:05:03,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:05:03,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:03,527 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:03,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:03,557 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:03,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 07:05:03,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:05:03,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:04,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:04,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:04,527 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:04,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:05:04,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:05:04,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:04,937 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:04,938 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:04,971 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:05,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:05:05,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:05:05,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:05,364 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:05,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:05,395 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:05,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:05:05,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:05:05,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:06,491 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:06,492 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:06,529 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:06,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 07:05:06,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:05:06,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:07,811 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:07,811 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:07,846 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:07,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:05:07,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:05:07,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:08,776 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:05:08,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:08,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:09,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 07:05:09,060 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.142s/image) +2025-10-02 07:05:09,061 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:05:09,435 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:09,435 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:09,467 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:09,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 07:05:09,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 07:05:09,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:09,735 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:05:09,736 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:09,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:09,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 07:05:09,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.262s (avg: 0.131s/image) +2025-10-02 07:05:09,998 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:05:10,699 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:10,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:10,739 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:10,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:05:10,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:05:10,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:11,392 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:11,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:11,443 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:11,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.180s +2025-10-02 07:05:11,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.180s (avg: 0.180s/image) +2025-10-02 07:05:11,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:12,487 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:05:12,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:12,544 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:12,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.283s +2025-10-02 07:05:12,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.283s (avg: 0.141s/image) +2025-10-02 07:05:12,771 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:05:13,192 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:13,192 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:13,227 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:13,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:05:13,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:05:13,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:14,330 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:14,331 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:14,364 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:14,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 07:05:14,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:05:14,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:15,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:15,326 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:15,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:15,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 07:05:15,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:05:15,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:15,645 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:15,646 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:15,675 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:15,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 07:05:15,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 07:05:15,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:15,950 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:15,951 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:15,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:16,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 07:05:16,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:05:16,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:17,530 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:17,531 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:17,582 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:17,704 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 07:05:17,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 07:05:17,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:17,901 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:17,902 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:17,924 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:18,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 07:05:18,036 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.134s (avg: 0.134s/image) +2025-10-02 07:05:18,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:18,386 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:18,387 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:18,423 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:18,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:05:18,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:05:18,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:18,857 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:18,857 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:18,889 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:19,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:05:19,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:05:19,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:19,439 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:05:19,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:19,507 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:19,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.310s +2025-10-02 07:05:19,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.310s (avg: 0.155s/image) +2025-10-02 07:05:19,751 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:05:20,296 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:05:20,296 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:20,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:20,598 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.301s +2025-10-02 07:05:20,598 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.301s (avg: 0.151s/image) +2025-10-02 07:05:20,599 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:05:21,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:21,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:21,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:21,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:05:21,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:05:21,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:21,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:21,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:21,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:22,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 07:05:22,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 07:05:22,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:22,790 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:22,791 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:22,831 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:22,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:05:22,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:05:22,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:23,692 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:05:23,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:23,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:23,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +2025-10-02 07:05:23,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 07:05:23,992 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:05:25,102 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:25,103 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:25,143 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:25,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 07:05:25,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:05:25,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:25,731 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:25,732 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:25,758 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:25,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 07:05:25,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 07:05:25,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:26,047 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +2025-10-02 07:05:26,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:26,102 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:26,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 07:05:26,335 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.286s (avg: 0.143s/image) +2025-10-02 07:05:26,335 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +2025-10-02 07:05:26,523 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:26,524 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:26,558 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:26,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 07:05:26,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 07:05:26,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:27,662 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:27,663 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:27,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:27,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 07:05:27,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:05:27,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:30,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:30,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:30,087 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:30,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 07:05:30,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:05:30,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:30,667 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:30,668 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:30,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:30,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:05:30,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:05:30,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:31,257 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:31,258 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:31,297 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:31,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 07:05:31,434 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.175s (avg: 0.175s/image) +2025-10-02 07:05:31,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:31,876 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:31,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:31,907 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:32,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 07:05:32,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:05:32,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:32,195 - app.core.batch_manager - INFO - Creating a new batch with 3 jobs. +2025-10-02 07:05:32,195 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 3). VRAM: 0.0 GB +2025-10-02 07:05:32,271 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 3개 이미지 인페인팅 수행 +2025-10-02 07:05:32,590 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.394s +2025-10-02 07:05:32,590 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.394s (avg: 0.131s/image) +2025-10-02 07:05:32,590 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +2025-10-02 07:05:34,319 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:34,319 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:34,360 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:34,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 07:05:34,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:05:34,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:35,193 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:35,193 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:35,225 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:35,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 07:05:35,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:05:35,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:37,647 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:37,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:37,683 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:37,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 07:05:37,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.167s (avg: 0.167s/image) +2025-10-02 07:05:37,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:38,016 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:38,017 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:38,056 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:38,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 07:05:38,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 07:05:38,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:38,383 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:05:38,400 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:05:38,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.469 +2025-10-02 07:05:38,480 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +2025-10-02 07:05:38,480 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 07:05:39,324 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:39,325 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:39,357 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:39,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:05:39,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:05:39,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:40,809 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:40,810 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:40,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:40,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 07:05:40,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:05:40,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:43,909 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:43,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:43,965 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:44,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 07:05:44,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 07:05:44,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:44,415 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:44,416 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:44,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:44,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 07:05:44,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:05:44,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:47,235 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:47,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:47,274 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:47,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 07:05:47,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:05:47,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:47,793 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:47,793 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:47,828 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:47,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 07:05:47,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:05:47,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:48,664 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:48,665 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:48,695 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:48,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 07:05:48,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:05:48,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:48,986 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:48,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:49,021 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:49,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:05:49,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:05:49,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:53,471 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:53,472 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:53,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:53,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 07:05:53,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:05:53,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:58,516 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:58,517 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:58,564 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:58,700 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.182s +2025-10-02 07:05:58,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.182s (avg: 0.182s/image) +2025-10-02 07:05:58,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:58,866 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:58,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:58,913 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:59,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:05:59,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:05:59,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +2025-10-02 07:05:59,302 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +2025-10-02 07:05:59,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:59,346 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:59,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 07:05:59,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:05:59,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. diff --git a/logs/main_server.log b/logs/main_server.log index fff9f80..1aba6af 100644 --- a/logs/main_server.log +++ b/logs/main_server.log @@ -660,3 +660,48593 @@ INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. 2025-10-02 05:52:56,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. INFO: 220.77.167.192:52114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK INFO: 127.0.0.1:48638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49645 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48652 - "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 05:52:58,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 05:52: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 05:52:58,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.164s +2025-10-02 05:52:58,430 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:52:58,430 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:52:58,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49646 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:52:58,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 05:52:58,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 05:52:58,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.143s +2025-10-02 05:52:59,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 05:52:59,027 - 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 05:52:59,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48666 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48678 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48680 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:3747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:01,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 05:53:01,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 05:53:01,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.167s +2025-10-02 05:53:01,477 - 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 05:53:01,477 - 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 05:53:01,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48688 - "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 05:53:01,805 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:01,806 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:53:01,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.166s +2025-10-02 05:53:01,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:53:01,973 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:01,973 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:02,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 05:53:02,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 05:53:02,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.149s +2025-10-02 05:53:02,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:53:02,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:02,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48696 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48704 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:03,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 05:53:03,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 05:53:03,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.158s +2025-10-02 05:53:03,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:53:03,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:03,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53958 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:03,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 05:53:03,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 05:53:03,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.165s +2025-10-02 05:53:04,076 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:53:04,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:04,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88: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 05:53:04,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 05:53:04,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 05:53:04,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.142s +2025-10-02 05:53:04,389 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +2025-10-02 05:53:04,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.142s (avg: 0.142s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:04,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:04,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 05:53:04,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 05:53:04,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.139s +2025-10-02 05:53:04,782 - 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 05:53:04,783 - 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 05:53:04,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53970 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:3752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:59491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53978 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53980 - "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 05:53: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 05:53:06,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 05:53:06,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.144s +2025-10-02 05:53:06,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 05:53:06,170 - 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 05:53:06,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59496 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:06,329 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:53:06,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 05:53:06,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.161s +2025-10-02 05:53:06,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:53:06,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:06,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53992 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53996 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54010 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54024 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59614 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:09,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 05:53:09,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 05:53:09,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.143s +2025-10-02 05:53:09,858 - 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 05:53:09,859 - 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 05:53:09,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59615 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:10,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 05:53:10,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 05:53:10,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.162s +2025-10-02 05:53:10,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:53:10,390 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:10,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:3763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:53:11,245 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:53:11,245 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:53:11,303 - app.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 05:53:11,541 - 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 05:53:11,542 - 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 05:53:11,542 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:65249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:11,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 05:53:11,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 05:53:11,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.168s +2025-10-02 05:53:11,899 - 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 05:53:11,899 - 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 05:53:11,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54066 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54078 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:53:12,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 05:53:12,935 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.266 +2025-10-02 05:53:13,022 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.266 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 05:53:13,022 - 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 05:53:13,022 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 175.119.234.181:7936 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:54084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:54956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:13,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 05:53:13,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 05:53:13,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.175s +2025-10-02 05:53:13,801 - 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 05:53:13,801 - 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 05:53:13,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:54957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47500 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47510 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47526 - "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 05:53:15,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 05:53:15,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 05:53:15,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.159s +2025-10-02 05:53:15,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 05:53:15,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:15,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:16,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 05:53:16,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 05:53:16,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.154s +2025-10-02 05:53:16,293 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:53:16,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:16,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47542 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:47552 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47554 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47560 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:54963 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:53:20,456 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:53:20,457 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:53:20,515 - app.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 05:53:20,751 - 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 05:53:20,751 - 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 05:53:20,751 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:65254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53073 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47578 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:20,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 05:53: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 05:53:20,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.153s +2025-10-02 05:53:21,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:53:21,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:21,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:54964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:21,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 05:53:21,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 05:53:21,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.156s +2025-10-02 05:53:21,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | 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:53:21,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:21,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:21,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 05:53:21,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 05:53:21,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.138s +2025-10-02 05:53:21,971 - 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 05:53:21,971 - 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 05:53:21,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 127.0.0.1:47580 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47592 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47602 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40662 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40682 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 05:53:25,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 05:53:25,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 05:53:25,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 05:53:25,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:53:25,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:25,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:54969 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40698 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65258 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:27,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 05:53:27,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 05:53:27,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.157s +2025-10-02 05:53:27,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:53:27,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:27,176 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40708 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:27,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 05:53:27,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 05:53:27,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.152s +2025-10-02 05:53:27,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:53:27,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:27,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65259 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:27,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 05:53:27,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 05:53:27,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.145s +2025-10-02 05:53:28,013 - 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 05:53:28,013 - 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 05:53:28,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40720 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40736 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:29,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 05:53:29,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 05:53:29,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.163s +2025-10-02 05:53:29,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:53:29,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 05:53:29,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40750 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40754 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49677 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:54975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40758 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40774 - "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 05:53:32,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 05:53:32,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 05:53:32,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.163s +2025-10-02 05:53:32,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:53:32,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:32,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49678 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:33,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 05:53:33,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 05:53:33,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 05:53:33,199 - 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 05:53:33,199 - 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 05:53:33,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:54976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47696 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47700 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:35,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 05:53: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 05:53:35,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.171s +2025-10-02 05:53:35,407 - 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 05:53:35,408 - 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 05:53:35,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47706 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47720 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47728 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47742 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:57806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:38,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 05:53:38,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 05:53:38,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.158s +2025-10-02 05:53:38,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:53:38,477 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:38,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47754 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47766 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47770 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47780 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47792 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47794 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:42,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 05:53:42,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 05:53:42,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 05:53:42,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:53:42,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:42,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50174 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53: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 05:53: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 05:53:43,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.164s +2025-10-02 05:53:43,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:53:43,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:43,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54310 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1501 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:44,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 05:53:44,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 05:53: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.165s +2025-10-02 05:53:44,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:53:44,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:44,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:44,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 05:53:44,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 05:53:44,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 05:53:44,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:53:44,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:44,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1502 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54322 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54330 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54334 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54340 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:54350 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54366 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54382 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49694 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:49,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 05:53:49,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 05:53: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.169s +2025-10-02 05:53:49,188 - 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 05:53:49,189 - 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 05:53:49,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49695 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54396 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 05:53:50,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 05:53:50,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 05:53:50,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.169s +2025-10-02 05:53:50,652 - 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 05:53:50,652 - 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 05:53:50,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1514 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54398 - "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 05:53:51,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 05:53:51,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 05:53:51,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.146s +2025-10-02 05:53:51,319 - 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 05:53:51,319 - 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 05:53:51,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1515 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54412 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65274 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:52,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 05:53:52,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 05:53:52,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:53:52,719 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:53:52,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:52,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65275 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59361 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54418 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:53,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 05:53:53,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 05:53:53,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 05:53:53,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:53:53,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:53,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:53,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 05:53:53,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 05:53:53,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 05:53:53,997 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:53:53,997 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:53,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49700 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53488 - "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 05:53:54,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 05:53:54,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 05:53:54,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.152s +2025-10-02 05:53:54,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 05:53:54,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:54,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:55,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 05:53:55,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 05:53:55,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 05:53:55,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:53:55,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:55,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53500 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53508 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53516 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:56,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 05:53:56,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 05:53:56,331 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 05:53:56,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 05:53:56,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 05:53:56,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1521 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53520 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:53:57,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 05:53:57,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 05:53:57,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.154s +2025-10-02 05:53:58,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:53:58,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:53:58,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53528 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53532 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53542 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53097 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:54:00,135 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:54:00,136 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:54:00,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.293s +2025-10-02 05:54:00,429 - 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 05:54:00,430 - 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 05:54:00,430 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53098 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53558 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53574 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65279 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:02,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 05:54:02,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 05:54:02,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.163s +2025-10-02 05:54:02,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:54:02,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:02,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65280 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53586 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:54:02,629 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:54:02,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:54:02,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.292s +2025-10-02 05:54:02,922 - 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 05:54:02,922 - 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 05:54:02,922 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:1527 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:03,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 05:54:03,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 05:54:03,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.147s +2025-10-02 05:54:03,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:54:03,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:03,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57896 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57912 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57916 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:06,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 05:54:06,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 05:54: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.151s +2025-10-02 05:54:06,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:54:06,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:06,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:07,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 05:54:07,439 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:07,484 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 05:54:07,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:54:07,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:07,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57940 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57950 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:08,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 05:54:08,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 05:54:08,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.151s +2025-10-02 05:54:08,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:54:08,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:08,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53103 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57958 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57962 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57976 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:65285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57990 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49727 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:11,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 05:54:11,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 05:54:11,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.170s +2025-10-02 05:54:11,454 - 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 05:54:11,455 - 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 05:54:11,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:11,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 05:54: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 05:54:11,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 05:54:11,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | 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:54:11,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:11,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49728 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58004 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58018 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:13,460 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:13,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 05:54:13,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 05:54:13,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:54:13,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:13,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46456 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:14,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 05:54:14,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 05:54:14,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.168s +2025-10-02 05:54:14,834 - 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 05:54:14,834 - 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 05:54:14,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46466 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46480 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 05:54:16,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 05:54:16,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 05:54:16,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.177s +2025-10-02 05:54:16,424 - 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 05:54:16,425 - 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 05:54:16,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49734 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:16,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 05:54: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 05:54:16,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 05:54: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 05:54: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 05:54:16,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46496 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:46506 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:17,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 05:54:17,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 05:54:17,676 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:54:17,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:54:17,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:17,799 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46510 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54: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 05:54: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 05:54:18,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 05:54:18,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:54:18,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:18,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46522 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:19,424 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:54:19,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=123.204 +2025-10-02 05:54:19,532 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.204 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 05:54:19,532 - 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 05:54:19,532 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 175.119.234.181:12555 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:46538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:61492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:20,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 05:54:20,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 05:54:20,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 05:54:21,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:54:21,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:21,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46550 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46552 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46564 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54: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 05:54:22,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 05:54:22,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.161s +2025-10-02 05:54:22,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:54:22,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:22,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46572 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:23,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 05:54:23,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 05:54:23,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.149s +2025-10-02 05:54:23,647 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:54:23,647 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:23,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38918 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38934 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38946 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12563 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:25,837 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:54:25,866 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=81.268 +2025-10-02 05:54:25,958 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.268 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 05:54:25,958 - 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 05:54:25,960 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 175.119.234.181:7487 - "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 05:54:26,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 05:54:26,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 05:54:26,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.153s +2025-10-02 05:54:26,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:54:26,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:26,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12564 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38962 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:26,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 05:54:26,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 05:54:26,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.151s +2025-10-02 05:54:26,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:54:26,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:26,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:27,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 05:54:27,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 05:54:27,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 05:54:27,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:54:27,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:27,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49741 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38978 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38988 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39002 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39012 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39018 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39046 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39056 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39070 - "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 05:54:33,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 05:54: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 05:54:33,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.156s +2025-10-02 05:54:33,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | 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:54:33,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:33,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:54:34,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 05:54:34,303 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:54:34,355 - app.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 05:54:34,581 - 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 05:54:34,581 - 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 05:54:34,582 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:59460 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41424 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41434 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41442 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41444 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:39,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 05:54:39,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 05:54:39,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.163s +2025-10-02 05:54:39,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:54:39,786 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:39,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41454 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41468 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41484 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41500 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41512 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236: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 05:54:43,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 05:54:43,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 05:54:43,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.158s +2025-10-02 05:54:43,673 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:54:43,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:43,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51728 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:59471 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:44,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 05:54:44,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 05:54:44,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 05:54:45,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:54:45,094 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:45,094 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51738 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51754 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51768 - "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 05:54:46,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 05:54:46,590 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:54:46,629 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:54:46,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:54:46,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:46,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51770 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:47,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 05:54:47,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 05:54:47,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.166s +2025-10-02 05:54:47,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 05:54:47,719 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:47,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49747 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51774 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:51778 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51788 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51798 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:49,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 05:54:49,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 05:54:49,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.168s +2025-10-02 05:54:49,887 - 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 05:54:49,887 - 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 05:54:49,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51800 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:50,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 05:54:50,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 05:54:50,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.157s +2025-10-02 05:54:50,559 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:54:50,559 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:50,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65313 - "POST /api/v1/inpaint 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 05:54:50,902 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:54:50,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=98.356 +2025-10-02 05:54:51,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.356 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 05:54:51,014 - 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 05:54:51,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:61508 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:51814 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51818 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51832 - "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 05:54:52,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 05:54:52,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 05:54: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.165s +2025-10-02 05:54:53,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:54:53,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:53,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51838 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:57814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:53,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 05:54:53,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 05:54: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.163s +2025-10-02 05:54:53,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:54:53,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:53,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:54,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:54:54,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 05:54:54,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.148s +2025-10-02 05:54:54,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:54:54,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:54,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57815 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40400 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40406 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40408 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:56,179 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:54:56,201 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.143 +2025-10-02 05:54:56,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.143 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 05:54:56,288 - 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 05:54:56,289 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 61.255.207.212:61513 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:40414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:56,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 05:54:56,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 05:54:56,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.166s +2025-10-02 05:54:56,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 05:54:56,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 05:54:56,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:54:56,728 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(702, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:54:56,754 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(702, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=83.231 +2025-10-02 05:54:56,843 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.231 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 05:54:56,843 - 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 05:54:56,845 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 220.77.167.192:52158 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:65317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:57,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 05:54:57,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 05:54:57,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.137s +2025-10-02 05:54:57,326 - 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 05:54:57,326 - 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 05:54:57,326 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40424 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12584 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:54:58,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 05:54:58,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 05:54:58,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.160s +2025-10-02 05:54:58,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:54:58,377 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:54:58,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12585 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40440 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40454 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40460 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:61519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:55:00,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 05:55:00,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=127.794 +2025-10-02 05:55:00,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.794 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 05:55:00,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.086s +2025-10-02 05:55:00,590 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:61520 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:12592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:01,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 05:55:01,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 05:55:01,213 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:55:01,345 - 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 05:55:01,345 - 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 05:55:01,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40468 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40484 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40496 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:03,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 05:55:03,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 05:55:03,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.157s +2025-10-02 05:55:03,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:55:03,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:03,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57908 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57916 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:05,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 05:55:05,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 05:55:05,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.152s +2025-10-02 05:55:05,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:55:05,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:05,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:05,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 05:55:05,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 05:55:05,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:55:05,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:55:05,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 05:55:05,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57942 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:61524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:07,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 05:55:07,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 05:55:07,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.154s +2025-10-02 05:55:07,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:55:07,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:07,451 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57944 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:08,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 05:55:08,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 05:55:08,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.168s +2025-10-02 05:55:08,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 05:55:08,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 05:55:08,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57954 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57964 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12609 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:09,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 05:55:09,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 05:55:09,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.155s +2025-10-02 05:55:09,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:55:09,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:09,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12610 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57968 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57978 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57984 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57986 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:12,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 05:55:12,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 05:55:12,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:55:12,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:55:12,664 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:12,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57994 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44408 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44416 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44422 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44426 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7550 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55: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 05:55: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 05:55:16,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.163s +2025-10-02 05:55:16,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:55:16,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:16,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:17,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 05:55:17,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 05:55:17,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.151s +2025-10-02 05:55:17,249 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:55:17,249 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:17,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7551 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:17,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 05:55:17,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 05:55:17,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 05:55:17,959 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:55:17,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:17,960 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44456 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:44468 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44490 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44502 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44512 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44518 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55: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 05:55: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 05:55: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.166s +2025-10-02 05:55:23,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:55:23,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:23,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8098 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55: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 05:55:23,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 05:55:23,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 05:55:23,675 - 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 05:55:23,675 - 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 05:55:23,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8099 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8494 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:24,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 05:55:24,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 05:55:24,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.160s +2025-10-02 05:55:24,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:55:24,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:24,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8495 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38370 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38386 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38392 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:59554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:26,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 05:55:26,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 05:55:26,562 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 05:55:26,679 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:55:26,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:26,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38408 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38422 - "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 05:55:27,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 05:55:27,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 05:55:28,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.160s +2025-10-02 05:55:28,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:55:28,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:28,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:28,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 05:55:28,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 05:55:28,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.152s +2025-10-02 05:55:28,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:55:28,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:28,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65332 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:28,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 05:55:28,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 05:55:28,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.164s +2025-10-02 05:55:29,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:55:29,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:29,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38424 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38426 - "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 05:55:30,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 05:55:30,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 05:55:30,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.170s +2025-10-02 05:55:30,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 05:55:30,275 - 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 05:55:30,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38432 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38434 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12643 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:31,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 05:55:31,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 05:55:31,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.161s +2025-10-02 05:55:31,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:55:31,744 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:31,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12644 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38448 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38456 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:34,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 05:55:34,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 05:55:34,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.155s +2025-10-02 05:55:34,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:55:34,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:34,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45752 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45768 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59571 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:35,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 05:55:35,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 05:55:35,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.158s +2025-10-02 05:55:35,563 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:55:35,563 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:35,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59572 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45778 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:35,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 05:55:35,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 05:55:35,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.155s +2025-10-02 05:55:36,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:55:36,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:36,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:36,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 05:55:36,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 05:55:36,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.151s +2025-10-02 05:55:36,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 05:55:36,344 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:36,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45794 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45808 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45816 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45824 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45836 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:40,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 05:55:40,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 05:55:40,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.168s +2025-10-02 05:55:40,581 - 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 05:55:40,582 - 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 05:55:40,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45846 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:41,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 05:55:41,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 05:55:41,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 05:55:41,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 05:55:41,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 05:55:41,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45848 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:42,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 05:55: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 05:55:42,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.158s +2025-10-02 05:55:42,215 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:55:42,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:42,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:55:42,538 - 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 05:55:42,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=83.902 +2025-10-02 05:55:42,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.902 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 05:55:42,635 - 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 05:55:42,635 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 61.255.207.212:55036 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:45860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45868 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57110 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55040 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:59582 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57120 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57132 - "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 05:55:45,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 05:55: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 05:55:45,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.164s +2025-10-02 05:55: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 05:55: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 05:55:46,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:55:46,166 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:55:46,183 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=188.173 +2025-10-02 05:55:46,252 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=188.173 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.068s +2025-10-02 05:55:46,253 - 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 05:55:46,253 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.069s +INFO: 61.255.207.212:55041 - "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 05:55:46,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 05:55:46,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 05:55:46,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.158s +2025-10-02 05:55:46,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:55:46,571 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:46,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:46,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 05:55:46,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 05:55:46,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.157s +2025-10-02 05:55:46,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 05:55:46,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 05:55:46,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8517 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57144 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:47,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 05:55:47,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 05:55:47,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.163s +2025-10-02 05:55:47,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:55:47,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:47,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57160 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57166 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57182 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:65351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57186 - "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 05:55:49,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 05:55:49,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 05:55:49,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.136s +2025-10-02 05:55:49,286 - 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 05:55:49,286 - 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 05:55:49,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:49,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 05:55:49,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 05:55:49,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.151s +2025-10-02 05:55:49,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:55:49,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:49,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62901 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:55:49,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 05:55:49,920 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=201.850 +2025-10-02 05:55:49,992 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=201.850 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.071s +2025-10-02 05:55:49,992 - 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 05:55:49,992 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.072s +INFO: 61.255.207.212:55048 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52180 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:50,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 05:55:50,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 05:55:50,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.154s +2025-10-02 05:55:50,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 05:55:50,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 05:55:50,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62902 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:50,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:55:50,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 05:55:50,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.160s +2025-10-02 05:55:50,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:55:50,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:50,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52181 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57194 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:51,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 05:55:51,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 05:55:51,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 05:55:51,475 - 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 05:55:51,475 - 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 05:55:51,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:51,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 05:55:51,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 05:55:51,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.154s +2025-10-02 05:55:52,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:55:52,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:52,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57200 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57212 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57224 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54306 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12686 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54318 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54334 - "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 05:55:55,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 05:55:55,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 05:55:55,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.180s +2025-10-02 05:55:55,667 - 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 05:55:55,667 - 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 05:55:55,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12687 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:56,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 05:55:56,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 05:55: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.144s +2025-10-02 05:55:56,689 - 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 05:55:56,690 - 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 05:55:56,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:55:56,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 05:55:56,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 05:55:56,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.294s +2025-10-02 05:55:57,154 - 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 05:55:57,154 - 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 05:55:57,154 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:61565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54364 - "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 05:55:57,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 05:55:57,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 05:55:57,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.158s +2025-10-02 05:55:57,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:55:57,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:57,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:55:58,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 05:55:58,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 05:55:58,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.151s +2025-10-02 05:55:58,221 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:55:58,221 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:58,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62909 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54376 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54382 - "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 05:55:58,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 05:55:58,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 05:55:58,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.147s +2025-10-02 05:55:58,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:55:58,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:55:58,667 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62910 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54388 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54394 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54424 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54436 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56910 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56922 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56934 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:04,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 05:56:04,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 05:56:04,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.170s +2025-10-02 05:56:05,035 - 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 05:56:05,035 - 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 05:56:05,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:56:05,376 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:05,376 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:05,434 - app.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 05:56:05,653 - 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 05:56:05,654 - 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 05:56:05,654 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:50220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56938 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56: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 05:56: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 05:56: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.147s +2025-10-02 05:56:06,047 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:56:06,047 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:06,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:59624 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56946 - "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 05:56:06,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 05:56:06,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 05:56:06,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.145s +2025-10-02 05:56:06,804 - 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 05:56:06,804 - 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 05:56:06,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:06,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 05:56:06,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 05:56:06,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.145s +2025-10-02 05:56:07,095 - 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 05:56:07,096 - 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 05:56:07,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59625 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56952 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56958 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56: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 05:56:08,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 05:56: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.161s +2025-10-02 05:56:08,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 05:56:08,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:08,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56962 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56976 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56986 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57000 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57004 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57010 - "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 05:56:12,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 05:56:12,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 05:56:13,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.152s +2025-10-02 05:56:13,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:56:13,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:13,148 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:13,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 05:56:13,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 05:56:13,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.158s +2025-10-02 05:56:13,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 05:56:13,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 05:56:13,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:57825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44838 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:14,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 05:56:14,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 05:56:14,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.161s +2025-10-02 05:56:14,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:56:14,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 05:56:14,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56: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 05:56: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 05:56:14,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.177s +2025-10-02 05:56:15,005 - 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 05:56:15,006 - 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 05:56:15,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44850 - "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 05:56:15,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 05:56:15,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 05:56:15,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.179s +2025-10-02 05:56:15,373 - 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:56:15,373 - 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 05:56:15,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44862 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44868 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12723 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:59639 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:16,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 05:56:16,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 05:56:16,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.161s +2025-10-02 05:56:16,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:56:16,847 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:16,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12724 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44882 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:17,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 05:56:17,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 05:56:17,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.162s +2025-10-02 05:56:17,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:56:17,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:17,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59641 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:56:17,931 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:56:17,956 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.885 +2025-10-02 05:56:18,051 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.885 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 05:56:18,051 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 05:56:18,053 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 39.112.59.88:50225 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:44892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:18,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 05:56:18,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 05:56:18,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.152s +2025-10-02 05:56:18,944 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:56:18,944 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:18,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44908 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44916 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:44928 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:19,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 05:56:19,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 05:56:19,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.169s +2025-10-02 05:56:20,038 - 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 05:56:20,039 - 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 05:56:20,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:20,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 05:56:20,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 05:56:20,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.146s +2025-10-02 05:56:20,337 - 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 05:56:20,337 - 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 05:56:20,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44940 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:20,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 05:56:20,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 05:56:20,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.165s +2025-10-02 05:56:20,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:56:20,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:20,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:20,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 05:56:20,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 05:56:20,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.151s +2025-10-02 05:56:20,990 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:56:20,990 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:20,990 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44944 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:22,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 05:56:22,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 05:56:22,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.162s +2025-10-02 05:56:22,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 05:56:22,363 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:22,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44948 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44954 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44968 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:23,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 05:56:23,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 05:56:23,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.160s +2025-10-02 05:56:24,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:56:24,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:24,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40196 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40218 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:49772 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:25,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 05:56:25,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 05:56:25,589 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 05:56:25,710 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:56:25,710 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:25,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:25,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 05:56:25,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 05:56:25,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.139s +2025-10-02 05:56:26,011 - 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 05:56:26,012 - 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 05:56:26,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:56:26,157 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:26,157 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:26,201 - app.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 05:56:26,415 - 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 05:56:26,416 - 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 05:56:26,416 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:49773 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40226 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62936 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:27,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 05:56:27,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 05:56:27,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.153s +2025-10-02 05:56:27,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:56:27,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:27,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62937 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40242 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40246 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40250 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40260 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:65392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61604 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:31,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 05:56:31,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 05:56:31,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.165s +2025-10-02 05:56:31,834 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:56:31,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 05:56:31,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 05:56:32,003 - 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 05:56:32,004 - 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 05:56:32,081 - 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.410s +2025-10-02 05:56:32,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.410s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.410s (avg: 0.137s/image) +2025-10-02 05:56:32,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.410s (avg: 0.137s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 05:56:32,414 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 127.0.0.1:40262 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50235 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:49779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:32,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 05:56:32,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 05:56: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.148s +2025-10-02 05:56:32,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:56:32,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:32,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61605 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:56:32,917 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:32,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:32,961 - app.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 05:56:33,172 - 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.127s/image) +2025-10-02 05:56:33,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.253s (avg: 0.127s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 05:56:33,172 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:56:33,379 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:33,380 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:33,443 - app.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 05:56:33,672 - 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 05:56:33,673 - 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 05:56:33,673 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56898 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56902 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56912 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56914 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:36,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 05:56:36,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 05:56:36,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.164s +2025-10-02 05:56:36,663 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:56:36,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:36,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56920 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56946 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:38,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 05:56:38,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 05:56:38,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 05:56:38,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:56:38,330 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:38,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56962 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56972 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:39,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 05:56: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 05:56:39,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.164s +2025-10-02 05:56:40,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:56:40,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:40,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:40,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 05:56:40,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 05:56:40,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.148s +2025-10-02 05:56:40,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:56:40,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:40,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56982 - "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 05:56:40,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 05:56:40,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 05:56: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.161s +2025-10-02 05:56:41,007 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:56:41,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:41,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65401 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12293 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56986 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:41,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 05:56:41,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 05:56:41,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.155s +2025-10-02 05:56:42,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:56:42,020 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:42,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12294 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56990 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:43,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 05:56:43,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 05:56:43,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.148s +2025-10-02 05:56:43,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:56:43,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:43,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59669 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:43,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 05:56:43,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 05:56:43,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 05:56:43,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 05:56:43,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 05:56:43,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58086 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58098 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58108 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58120 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:46,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 05:56:46,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 05:56:46,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.166s +2025-10-02 05:56:46,941 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:56:46,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:46,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58124 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:56:47,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 05:56:47,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 05:56:47,143 - app.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 05:56:47,364 - 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 05:56:47,364 - 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 05:56:47,364 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12299 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58140 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58144 - "GET /api/v1/realtime_status 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 05:56:49,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 05:56:49,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 05:56: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.169s +2025-10-02 05:56:49,336 - 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 05:56:49,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 05:56:49,337 - 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: 127.0.0.1:58152 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:65408 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:49,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 05:56:49,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 05:56:49,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.204s +2025-10-02 05:56:49,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.204s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +2025-10-02 05:56:49,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.204s (avg: 0.204s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:49,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65409 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56: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 05:56: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 05:56:51,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.157s +2025-10-02 05:56:51,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:56:51,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:56:51,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58158 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58168 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:58172 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58182 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42310 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:54,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 05:56:54,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 05:56:54,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.175s +2025-10-02 05:56:54,972 - 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 05:56:54,972 - 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 05:56:54,973 - 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: 127.0.0.1:42318 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42330 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:56:55,149 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:56:55,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:55,202 - app.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 05:56:55,417 - 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 05:56:55,418 - 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 05:56:55,418 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52208 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42334 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42350 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:56:57,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 05:56:57,819 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:56:57,871 - app.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 05:56:58,116 - 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 05:56:58,117 - 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 05:56:58,117 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:50249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42358 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42370 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:56:58,433 - 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 05:56:58,464 - 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=33.338 +2025-10-02 05:56:58,575 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=33.338 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.109s +2025-10-02 05:56:58,575 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.109s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.113s +2025-10-02 05:56:58,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.113s +INFO: 220.77.167.192:53145 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:12331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42384 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:56:59,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 05:56:59,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 05:56:59,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.167s +2025-10-02 05:56:59,747 - 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 05:56:59,747 - 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 05:56:59,747 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42396 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42404 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42412 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:01,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 05:57:01,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 05:57:01,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.168s +2025-10-02 05:57:02,066 - 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 05:57:02,067 - 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 05:57:02,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42426 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39476 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39506 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65424 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39520 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:05,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 05:57:05,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 05:57:06,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.173s +2025-10-02 05:57:06,142 - 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 05:57:06,143 - 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 05:57:06,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65425 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39530 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39540 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39550 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39554 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39568 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39584 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:11,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 05:57:11,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 05:57:11,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.170s +2025-10-02 05:57:11,570 - 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 05:57:11,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 05:57:11,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39592 - "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 05:57: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 05:57: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 05:57:12,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 05:57:12,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:57:12,222 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:12,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39596 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39612 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:13,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 05:57:13,737 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.868 +2025-10-02 05:57:13,828 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.868 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 05:57:13,829 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 05:57:13,829 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:62961 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:55142 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:15,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 05:57:15,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 05:57:15,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.174s +2025-10-02 05:57:15,941 - 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 05:57:15,941 - 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 05:57:15,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55160 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55164 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55172 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55174 - "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 05:57:18,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 05:57:18,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 05:57:19,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.177s +2025-10-02 05:57:19,175 - 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 05:57:19,175 - 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 05:57:19,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55184 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55188 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:19,796 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:57:19,831 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.813 +2025-10-02 05:57:19,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.813 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 05:57:19,910 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 05:57:19,910 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:62968 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:55200 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:20,616 - 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 05:57:20,664 - 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=124.806 +2025-10-02 05:57:20,747 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.806 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 05:57:20,748 - 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 05:57:20,749 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:55143 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:55210 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55226 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55242 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:57:22,864 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:57:22,865 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:57:22,924 - app.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 05:57:23,148 - 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 05:57:23,149 - 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 05:57:23,149 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:11480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55256 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55264 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:23,622 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:57:23,652 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.881 +2025-10-02 05:57:23,736 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.881 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 05:57:23,736 - 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 05:57:23,737 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:62975 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:50291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41404 - "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 05:57:24,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 05:57:24,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 05:57:24,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.161s +2025-10-02 05:57:24,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 05:57:24,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:24,925 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41420 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:26,106 - 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 05:57:26,141 - 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=203.788 +2025-10-02 05:57:26,234 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=203.788 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 05:57:26,235 - 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 05:57:26,235 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 61.255.207.212:55152 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:41430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:11484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41446 - "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 05:57:27,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 05:57:27,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 05:57:27,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 05:57:27,628 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:57:27,628 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:27,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:28,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 05:57:28,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 05:57:28,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.141s +2025-10-02 05:57:28,343 - 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 05:57:28,343 - 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 05:57:28,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41462 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41464 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41476 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:65449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 05:57:30,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 05:57:30,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 05:57:30,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.177s +2025-10-02 05:57:30,476 - 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 05:57:30,476 - 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 05:57:30,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:30,558 - 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 05:57:30,581 - 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=229.184 +2025-10-02 05:57:30,665 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=229.184 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 05:57:30,665 - 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 05:57:30,666 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:55157 - "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 05:57:30,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 05:57:30,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 05:57:30,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.152s +2025-10-02 05:57:30,862 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:57:30,862 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:30,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41480 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:31,721 - 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 05:57:31,740 - 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=35.199 +2025-10-02 05:57:31,820 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.199 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 05:57:31,821 - 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 05:57:31,821 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 175.119.234.181:8197 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:41492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41494 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44916 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:33,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 05:57:33,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 05:57:33,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.161s +2025-10-02 05:57:33,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:57:33,868 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:33,868 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44918 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44920 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44934 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:36,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 05:57:36,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 05:57:36,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 05:57:36,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 05:57:36,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 05:57:36,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44948 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57: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 05:57: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 05:57:37,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.148s +2025-10-02 05:57:37,510 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:57:37,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:37,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44950 - "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 05:57:37,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 05:57:37,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 05:57:37,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.158s +2025-10-02 05:57:37,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:57:37,827 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:37,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44962 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44964 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50311 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44980 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:39,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 05:57:39,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 05:57:39,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.166s +2025-10-02 05:57:40,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:57:40,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:40,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50312 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:40,412 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:57:40,454 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=72.015 +2025-10-02 05:57:40,534 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.015 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 05:57:40,534 - 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 05:57:40,534 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 211.226.69.49:59753 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:44996 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44998 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45008 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45014 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8215 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:43,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 05:57:43,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57:43,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.147s +2025-10-02 05:57:43,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:57:43,823 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:43,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8216 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47554 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:44,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 05:57:44,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 05:57:44,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.153s +2025-10-02 05:57:44,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:57:44,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:44,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47570 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59770 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:45,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 05:57:45,555 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.428 +2025-10-02 05:57:45,629 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.428 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 05:57:45,630 - 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 05:57:45,630 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 211.226.69.49:59771 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47584 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47598 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:47,092 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:57:47,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.463 +2025-10-02 05:57:47,191 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.463 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 05:57:47,191 - 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 05:57:47,191 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:49822 - "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 05:57:47,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 05:57:47,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 05:57:47,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.157s +2025-10-02 05:57:47,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 05:57:47,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:47,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47600 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47608 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 05:57:49,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 05:57:49,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 05:57:49,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.162s +2025-10-02 05:57:49,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:57:49,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:49,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47614 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47630 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47636 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:51,181 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:57:51,200 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.411 +2025-10-02 05:57:51,278 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.411 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 05:57:51,279 - 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 05:57:51,279 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:49828 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:50326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47642 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:52,048 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:57:52,049 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:57: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.161s +2025-10-02 05:57:52,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 05:57:52,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:52,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47650 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59736 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59740 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:59748 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59764 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:55,228 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:57:55,246 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.841 +2025-10-02 05:57:55,326 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.841 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 05:57:55,326 - 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 05:57:55,326 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:49833 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:50332 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:55,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 05:57:55,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 05:57:55,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.153s +2025-10-02 05:57:55,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 05:57:55,899 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:57:55,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59768 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59778 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59794 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:57:57,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 05:57:57,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 05:57:57,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.157s +2025-10-02 05:57:57,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:57:57,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 05:57:57,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59800 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59816 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:49857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:57:59,797 - 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 05:57:59,822 - 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=23.276 +2025-10-02 05:57:59,907 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.276 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 05:57:59,908 - 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 05:57:59,908 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 211.197.218.214:49858 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:50337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59824 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59832 - "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 05:58:00,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 05:58:00,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 05:58:00,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.157s +2025-10-02 05:58:00,530 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:58:00,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:00,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59838 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:01,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 05:58:01,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 05:58:01,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.162s +2025-10-02 05:58:01,444 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 05:58:01,444 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:01,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:58:01,471 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:58:01,485 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.176 +2025-10-02 05:58:01,562 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.176 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 05:58:01,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 05:58:01,562 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 175.119.234.181:1542 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:61667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:02,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 05:58:02,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 05:58:02,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.163s +2025-10-02 05:58:02,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:58:02,199 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:02,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59846 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59856 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59870 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47548 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47556 - "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 05:58:05,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 05:58:05,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 05:58:05,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.157s +2025-10-02 05:58:05,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:58:05,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:05,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47568 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47582 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47586 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47614 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47620 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47636 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:59792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:11,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 05:58:11,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 05:58:11,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 05:58:11,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 05:58:11,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 05:58:11,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47642 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47644 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47650 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:12,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 05:58:12,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 05:58:12,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.154s +2025-10-02 05:58:13,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:58:13,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:13,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47662 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50004 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:14,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 05:58:14,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 05:58:14,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.157s +2025-10-02 05:58:15,019 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:58:15,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 05:58:15,020 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50010 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50018 - "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 05:58:15,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 05:58:15,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 05:58:15,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.160s +2025-10-02 05:58:15,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:58:15,854 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:15,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50020 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50030 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:59818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:18,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 05:58:18,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 05:58:18,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.167s +2025-10-02 05:58:18,369 - 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 05:58:18,369 - 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 05:58:18,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50044 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50054 - "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 05:58:18,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 05:58:18,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 05:58:18,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.134s +2025-10-02 05:58:18,660 - 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 05:58:18,660 - 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 05:58:18,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50060 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:19,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 05:58:19,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 05:58:19,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.150s +2025-10-02 05:58:20,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:58:20,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:20,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12815 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50064 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50076 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50086 - "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 05:58:21,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 05:58:21,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 05:58:21,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.158s +2025-10-02 05:58:21,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:58:21,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:21,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61685 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50098 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33640 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 05:58:26,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 05:58:26,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 05:58:26,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.163s +2025-10-02 05:58:26,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:58:26,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 05:58:26,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33648 - "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 05:58:26,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 05:58:26,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 05:58:26,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.140s +2025-10-02 05:58:26,877 - 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 05:58:26,877 - 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 05:58:26,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33660 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33674 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33680 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33694 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:30,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 05:58:30,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 05:58:30,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.143s +2025-10-02 05:58:30,452 - 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 05:58:30,452 - 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 05:58:30,453 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8258 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33710 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58: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 05:58: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 05:58: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.170s +2025-10-02 05:58:31,057 - 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 05:58:31,057 - 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 05:58:31,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33726 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:31,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 05:58:31,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 05:58:32,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.164s +2025-10-02 05:58:32,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:58:32,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:32,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33734 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33746 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:33,284 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:33,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 05:58:33,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.144s +2025-10-02 05:58:33,429 - 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 05:58:33,430 - 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 05:58:33,430 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36780 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:34,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 05:58:34,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 05:58:34,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.133s +2025-10-02 05:58:34,306 - 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 05:58:34,306 - 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 05:58:34,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36786 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36794 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:36,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 05:58:36,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 05:58:36,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.146s +2025-10-02 05:58:36,167 - 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 05:58:36,167 - 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 05:58:36,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36808 - "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 05:58:37,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 05:58:37,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 05:58:37,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.149s +2025-10-02 05:58:37,414 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:58:37,414 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:37,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36824 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36830 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50385 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:38,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 05:58:38,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 05:58:39,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.143s +2025-10-02 05:58:39,140 - 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 05:58:39,140 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.143s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:39,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50386 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36834 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12835 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:39,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 05:58:39,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 05:58:39,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.152s +2025-10-02 05:58:39,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:58:39,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 05:58:39,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12836 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36850 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65494 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36862 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:41,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 05:58:41,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 05:58:41,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.152s +2025-10-02 05:58:41,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 05:58:41,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 05:58:41,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65495 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:41,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 05:58:41,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 05:58:41,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.159s +2025-10-02 05:58:42,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 05:58:42,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:42,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36868 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:42,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 05:58:42,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 05:58:42,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.145s +2025-10-02 05:58:43,059 - 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 05:58:43,059 - 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 05:58:43,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36880 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12840 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:44,117 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:58:44,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 05:58:44,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.149s +2025-10-02 05:58:44,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:58:44,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:44,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38204 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:3621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:44,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 05:58:44,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 05:58:44,754 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 05:58:44,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 05:58:44,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 05:58:44,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3622 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38208 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:46,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 05:58:46,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 05:58:46,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 05:58:46,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 05:58:46,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:46,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38224 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:65500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:46,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 05:58:46,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 05:58:46,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 05:58:46,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:58:46,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:46,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:46,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 05:58:46,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 05:58:47,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.150s +2025-10-02 05:58:47,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:58:47,149 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:47,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38238 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38242 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:3627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:57849 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:48,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 05:58:48,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 05:58:48,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.149s +2025-10-02 05:58:48,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 05:58:48,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:48,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:48,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 05:58:48,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 05:58:48,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.155s +2025-10-02 05:58:48,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 05:58:48,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:48,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57850 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58: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 05:58:49,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 05:58:49,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.159s +2025-10-02 05:58:49,309 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 05:58:49,309 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:49,309 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38254 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38264 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59850 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:49,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 05:58:49,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 05:58:49,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.145s +2025-10-02 05:58:49,879 - 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 05:58:49,879 - 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 05:58:49,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59851 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38280 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:50,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 05:58:50,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 05:58:50,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.152s +2025-10-02 05:58:50,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:58:50,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:50,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12849 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38290 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38306 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38314 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45732 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 05:58:53,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 05:58:53,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 05:58:53,963 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 05:58:54,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:58:54,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:54,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:54,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 05:58:54,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 05:58:54,400 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 05:58:54,517 - 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 05:58:54,517 - 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 05:58:54,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45746 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:55,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 05:58:55,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 05:58:55,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.146s +2025-10-02 05:58:55,268 - 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 05:58:55,269 - 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 05:58:55,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45752 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45764 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45780 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45784 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:53231 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:57,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 05:58:57,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 05:58:57,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.155s +2025-10-02 05:58:57,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 05:58:57,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:57,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53232 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45798 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58:58,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 05:58:58,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 05:58:58,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.157s +2025-10-02 05:58:58,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:58:58,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:58:58,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63008 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45806 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45818 - "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 05:58:58,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 05:58:58,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 05:58:58,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 05:58:58,920 - 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 05:58:58,920 - 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 05:58:58,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63009 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:58: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 05:58:59,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 05:58:59,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.139s +2025-10-02 05:58:59,480 - 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 05:58:59,480 - 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 05:58:59,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45826 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:59877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12860 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:00,493 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 05:59:00,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 05:59:00,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.179s +2025-10-02 05:59:00,673 - 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:59:00,673 - 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 05:59:00,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:59:01,054 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:01,054 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:59:01,110 - app.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 05:59:01,334 - 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.140s/image) +2025-10-02 05:59:01,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 05:59:01,335 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:59881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12861 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45836 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55245 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59: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 05:59: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 05:59:02,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.152s +2025-10-02 05:59:02,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:59:02,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:02,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55246 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45846 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45854 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39088 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:03,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 05:59:03,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 05:59:03,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.148s +2025-10-02 05:59:03,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 05:59:03,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:03,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65517 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39100 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39116 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39120 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:59:05,897 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:05,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:59:05,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.300s +2025-10-02 05:59:06,198 - 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 05:59:06,199 - 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 05:59:06,199 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39136 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:07,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 05:59:07,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 05:59:07,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.168s +2025-10-02 05:59:07,642 - 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 05:59:07,642 - 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 05:59:07,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65521 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39150 - "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 05:59:07,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 05:59:07,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 05:59:07,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.140s +2025-10-02 05:59:08,054 - 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 05:59:08,054 - 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 05:59:08,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:59918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:08,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 05:59:08,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 05:59:08,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.147s +2025-10-02 05:59:08,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:59:08,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:08,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39158 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39160 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:09,833 - 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 05:59:09,850 - 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=48.106 +2025-10-02 05:59:09,930 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.106 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 05:59:09,930 - 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 05:59:09,931 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:61714 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:39172 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:10,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 05:59:10,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 05:59:10,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.160s +2025-10-02 05:59:10,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 05:59:10,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:10,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39176 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39192 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:12,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 05:59:12,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 05:59:12,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.157s +2025-10-02 05:59:12,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:59:12,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:12,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49860 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39206 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:61719 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:13,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 05:59:13,768 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.848 +2025-10-02 05:59:13,855 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.848 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 05:59:13,855 - 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:59:13,856 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 61.255.207.212:61720 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56416 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:65528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:14,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 05:59:14,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 05:59:14,825 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 05:59:14,942 - 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 05:59:14,942 - 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 05:59:14,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56436 - "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 05:59:15,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 05:59:15,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 05:59:15,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.150s +2025-10-02 05:59:15,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:59:15,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:15,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56454 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63025 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:17,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 05:59:17,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 05:59:17,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.164s +2025-10-02 05:59:17,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:59:17,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:17,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63026 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:17,793 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:59:17,817 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.982 +2025-10-02 05:59:17,906 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.982 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 05:59:17,907 - 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 05:59:17,907 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:61725 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:53244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56458 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56468 - "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 05:59:18,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 05:59:18,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 05:59:18,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.186s +2025-10-02 05:59:18,658 - 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 05:59:18,659 - 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 05:59:18,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:65533 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:49866 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:19,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 05:59:19,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 05:59:19,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 05:59:19,140 - 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 05:59:19,140 - 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 05:59:19,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:65534 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:19,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 05:59:19,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 05:59:19,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.179s +2025-10-02 05:59:19,483 - 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:59:19,484 - 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 05:59:19,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49867 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:19,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 05:59:19,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 05:59:19,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.151s +2025-10-02 05:59:20,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 05:59:20,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 05:59:20,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12889 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56490 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:21,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 05:59:21,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 05:59: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.171s +2025-10-02 05:59:21,834 - 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 05:59:21,834 - 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 05:59:21,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56500 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 05:59:23,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 05:59:23,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 05:59:23,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.164s +2025-10-02 05:59:23,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 05:59:23,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 05:59:23,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56512 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:61729 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:23,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 05:59:23,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 05:59:23,797 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 05:59:23,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:59:23,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:23,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61730 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32990 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33014 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49155 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:25,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 05:59:25,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 05:59:25,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.145s +2025-10-02 05:59:25,628 - 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 05:59:25,629 - 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 05:59:25,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49156 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:59929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33026 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:26,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 05:59:26,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 05:59:26,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.154s +2025-10-02 05:59:26,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 05:59:26,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:26,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33034 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:26,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 05:59:26,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 05:59:26,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.157s +2025-10-02 05:59:26,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 05:59:26,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 05:59:26,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59: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 05:59: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 05:59:27,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.171s +2025-10-02 05:59:27,206 - 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 05:59:27,207 - 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 05:59:27,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33040 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33046 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33062 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55256 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:29,862 - 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 05:59:29,892 - 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=55.795 +2025-10-02 05:59:29,982 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.795 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 05:59:29,982 - 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 05:59:29,983 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:55257 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:12896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:59:30,361 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:30,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 05:59:30,408 - app.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 05:59:30,638 - 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 05:59:30,639 - 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 05:59:30,639 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:12897 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33076 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33098 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:33,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 05:59:33,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 05:59:33,086 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 05:59:33,200 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 05:59:33,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:33,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49881 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55261 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42756 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:33,719 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_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:59:33,742 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.409 +2025-10-02 05:59:33,827 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=184.409 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 05:59:33,827 - 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 05:59:33,827 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:55262 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63037 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42758 - "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 05:59:34,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 05:59:34,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 05:59:34,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.165s +2025-10-02 05:59:34,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 05:59:34,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:34,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63038 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:35,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 05:59:35,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 05:59:35,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.156s +2025-10-02 05:59:35,449 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | 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:59:35,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:35,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42776 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:59942 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:36,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 05:59:36,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 05:59:36,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.150s +2025-10-02 05:59:36,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 05:59:36,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:36,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:59943 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42792 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 05:59:37,754 - 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 05:59:37,773 - 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=160.970 +2025-10-02 05:59:37,850 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=160.970 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 05:59:37,850 - 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 05:59:37,850 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:55269 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:42814 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49885 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:39,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 05:59:39,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 05:59:39,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.152s +2025-10-02 05:59:39,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 05:59:39,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:39,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49886 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42824 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:39,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 05:59:39,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 05:59:39,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.142s +2025-10-02 05:59:40,073 - 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 05:59:40,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 05:59:40,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42840 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42864 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42876 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56760 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:44,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 05:59:44,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 05:59:44,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.166s +2025-10-02 05:59:44,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 05:59:44,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:44,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56768 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56770 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56774 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56778 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56782 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56784 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49897 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:48,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 05:59:48,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 05:59:48,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.164s +2025-10-02 05:59:48,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 05:59:48,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:48,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49898 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56792 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56806 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8084 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:50,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 05:59:50,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 05:59:50,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.158s +2025-10-02 05:59:50,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 05:59:50,453 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:50,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8086 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56818 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56826 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56830 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:52,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 05:59:52,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 05:59:52,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.147s +2025-10-02 05:59:52,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:59:52,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:52,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56832 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:59:53,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 05:59:53,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 05:59:53,330 - app.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 05:59:53,556 - 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 05:59:53,557 - 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 05:59:53,557 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:61746 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40888 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40898 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8091 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 05:59:54,692 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 05:59:54,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 05:59:54,754 - app.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 05:59:54,968 - 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 05:59:54,968 - 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 05:59:54,968 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8092 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40908 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40914 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49184 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:49911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40938 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:40944 - "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 05:59:57,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 05:59:57,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 05:59:57,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.147s +2025-10-02 05:59:57,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 05:59:57,412 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 05:59:57,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49185 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:57,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 05:59:57,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 05:59:57,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.152s +2025-10-02 05:59:57,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 05:59:57,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 05:59:57,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:60006 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:57,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 05:59:57,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 05:59:57,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.152s +2025-10-02 05:59:58,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 05:59:58,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 05:59:58,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40960 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 05:59:58,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 05:59:58,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 05:59:58,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.162s +2025-10-02 05:59:58,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 05:59:58,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 05:59:58,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40968 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40982 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40988 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63052 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:00,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 06:00:00,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 06:00:00,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.168s +2025-10-02 06:00:00,727 - 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 06:00:00,727 - 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 06:00:00,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63053 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40996 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:61757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:01,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 06:00:01,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 06:00:01,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.158s +2025-10-02 06:00:01,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:00:01,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:01,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8349 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40998 - "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 06:00:02,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 06:00:02,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 06:00:02,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.150s +2025-10-02 06:00:02,417 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:00:02,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:02,418 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52263 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:53251 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:02,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 06:00:02,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 06:00:02,835 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:00:02,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:00:02,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:02,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:03,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 06:00:03,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 06:00:03,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.135s +2025-10-02 06:00:03,237 - 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 06:00:03,237 - 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 06:00:03,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52264 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41016 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:00:03,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 06:00:03,316 - 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=204.776 +2025-10-02 06:00:03,390 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=204.776 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 06:00:03,390 - 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 06:00:03,391 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 211.197.218.214:53256 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:57858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38352 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12903 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:05,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 06:00:05,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 06:00:05,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.165s +2025-10-02 06:00:05,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:00:05,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:05,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38356 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:00:05,586 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:00:05,608 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.397 +2025-10-02 06:00:05,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=121.397 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:00:05,696 - 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 06:00:05,697 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 175.119.234.181:12904 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:49925 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38372 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38376 - "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 06:00:06,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 06:00:06,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 06:00:06,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.169s +2025-10-02 06:00:06,791 - 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 06:00:06,791 - 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 06:00:06,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49926 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38378 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38390 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38400 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38408 - "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 06:00:09,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 06:00:09,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 06:00:09,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.162s +2025-10-02 06:00:09,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:00:09,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:09,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38418 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49932 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38432 - "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 06:00:12,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 06:00:12,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 06:00:12,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.173s +2025-10-02 06:00:12,420 - 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 06:00:12,421 - 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 06:00:12,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38454 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:00:13,695 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:13,696 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:13,765 - app.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 06:00:13,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 06:00:13,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:00:13,996 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:49933 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:60025 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43452 - "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 06:00:14,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 06:00:14,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 06:00:14,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.137s +2025-10-02 06:00:14,739 - 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 06:00:14,740 - 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 06:00:14,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60026 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:15,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 06:00:15,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 06:00:15,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.156s +2025-10-02 06:00:15,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:00:15,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:15,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:00:15,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 06:00:15,520 - 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.835 +2025-10-02 06:00:15,607 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.835 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:00:15,607 - 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 06:00:15,607 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 175.119.234.181:8101 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:43468 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43474 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:16,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 06:00:16,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 06:00:16,685 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:00:16,806 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:00:16,806 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:16,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43488 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:16,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 06:00:16,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 06:00:17,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.164s +2025-10-02 06:00:17,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:00:17,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:17,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:49937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:17,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 06:00:17,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 06:00:17,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.158s +2025-10-02 06:00:17,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:00:17,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:17,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43500 - "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 06:00:18,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 06:00:18,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 06:00:18,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.157s +2025-10-02 06:00:18,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:00:18,305 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:18,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:18,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 06:00: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 06:00:18,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.153s +2025-10-02 06:00:18,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 06:00:18,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 06:00:18,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43508 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43524 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52274 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:19,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 06:00:19,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 06:00:19,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.162s +2025-10-02 06:00:19,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:00:19,778 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:19,778 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52275 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43536 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:20,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 06:00:20,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 06:00:20,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.166s +2025-10-02 06:00:20,913 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:00:20,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:20,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43540 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8106 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43568 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:49945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:22,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 06:00:22,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 06:00:22,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.176s +2025-10-02 06:00:22,926 - 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 06:00:22,926 - 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 06:00:22,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8107 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43574 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:00:23,088 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:23,088 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:23,150 - app.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 06:00:23,376 - 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 06:00:23,376 - 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 06:00:23,376 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:55297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61784 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8368 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:23,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 06:00:23,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 06:00:23,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 06:00:23,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:00:23,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 06:00:23,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:24,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 06:00:24,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 06:00:24,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.163s +2025-10-02 06:00:24,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:00:24,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:24,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49946 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49134 - "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 06:00:24,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 06:00:24,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 06:00:24,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 06:00:25,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:00:25,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:25,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8369 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:25,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 06:00:25,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 06:00:25,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.137s +2025-10-02 06:00:25,381 - 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 06:00:25,381 - 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 06:00:25,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49148 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49156 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49168 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12928 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49178 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:27,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 06:00:27,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 06:00:27,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.155s +2025-10-02 06:00:27,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:00:27,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:27,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12929 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49194 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52279 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:49950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:28,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 06:00:28,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 06:00:28,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.148s +2025-10-02 06:00:28,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:00:28,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:28,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49206 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49216 - "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 06:00:28,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 06:00:28,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 06:00:28,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.145s +2025-10-02 06:00:29,027 - 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 06:00:29,028 - 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 06:00:29,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52280 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:29,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 06:00:29,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 06:00:29,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.162s +2025-10-02 06:00:29,348 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:00:29,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:29,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49232 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49244 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8376 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:31,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 06:00:31,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 06:00:31,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.163s +2025-10-02 06:00:31,754 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:00:31,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 06:00:31,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49258 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49270 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:32,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 06:00:32,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 06:00:32,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:00:32,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:00:32,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:32,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49272 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60006 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49957 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60008 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60022 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:00:35,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 06:00:35,630 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:35,687 - app.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 06:00:35,924 - 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 06:00:35,924 - 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 06:00:35,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:49958 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60036 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:00:37,082 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:37,082 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:37,143 - app.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 06:00:37,378 - 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 06:00:37,379 - 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 06:00:37,379 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:49210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:37,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 06:00:37,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 06:00:37,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.145s +2025-10-02 06:00:37,710 - 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 06:00:37,711 - 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 06:00:37,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60062 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60072 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60088 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60090 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49964 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:40,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 06:00:40,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 06:00:40,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.168s +2025-10-02 06:00:40,762 - 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 06:00:40,763 - 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 06:00:40,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49965 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60104 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60110 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49214 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55311 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:41,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 06:00:41,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 06:00:41,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.167s +2025-10-02 06:00:41,665 - 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 06:00:41,666 - 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 06:00:41,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49215 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:41,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 06:00:41,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 06:00:41,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.164s +2025-10-02 06:00:41,994 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:00:41,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:41,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55312 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60122 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60136 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33738 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33748 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53275 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:44,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 06:00:44,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 06:00:44,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.154s +2025-10-02 06:00:44,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:00:44,919 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:44,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53276 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33762 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52289 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:45,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 06:00:45,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 06:00:45,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.179s +2025-10-02 06:00:45,695 - 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 06:00:45,696 - 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 06:00:45,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:45,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 06:00:45,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 06:00:45,957 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:00:46,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:00:46,075 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:46,075 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52290 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33766 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33782 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33794 - "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 06:00:47,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 06:00:47,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 06:00:47,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.163s +2025-10-02 06:00:47,556 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:00:47,557 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:47,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:49970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:49,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 06:00:49,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 06:00:49,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.157s +2025-10-02 06:00:49,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:00:49,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:49,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33806 - "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 06:00:49,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 06:00:49,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 06:00:49,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.168s +2025-10-02 06:00:49,763 - 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 06:00:49,763 - 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 06:00:49,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33814 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33816 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:50,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 06:00:50,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 06:00:50,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.168s +2025-10-02 06:00:50,823 - 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 06:00:50,823 - 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 06:00:50,823 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49225 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:00:50,900 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:00:50,922 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.710 +2025-10-02 06:00:51,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.710 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 06:00:51,001 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:00:51,001 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 39.112.59.88:50438 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33832 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33838 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55323 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:53,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 06:00:53,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 06:00:53,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:00:53,235 - 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 06:00:53,235 - 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 06:00:53,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55324 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33842 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:00:53,392 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:00:53,393 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:00:53,442 - app.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 06:00:53,674 - 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 06:00:53,675 - 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 06:00:53,675 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42848 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12953 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:54,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 06:00:54,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 06:00:55,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.152s +2025-10-02 06:00:55,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:00:55,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:55,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52295 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:55,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 06:00:55,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 06:00:55,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.154s +2025-10-02 06:00:55,443 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:00:55,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:55,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12954 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42862 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:56,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 06:00:56,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 06:00:56,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.162s +2025-10-02 06:00:56,311 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:00:56,311 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:00:56,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42868 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42872 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42876 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42888 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:55330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:49982 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:58,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 06:00:58,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 06:00:58,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.168s +2025-10-02 06:00:58,171 - 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 06:00:58,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 06:00:58,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:00:58,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 06:00:58,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 06:00:58,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.169s +2025-10-02 06:00:58,513 - 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 06:00:58,513 - 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 06:00:58,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49983 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42890 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42902 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42904 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:01:00,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 06:01:00,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 06:01:00,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.171s +2025-10-02 06:01:00,620 - 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 06:01:00,620 - 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 06:01:00,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53286 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42920 - "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 06:01:01,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 06:01:01,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 06:01:01,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.166s +2025-10-02 06:01:01,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:01:01,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:01,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49235 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:02,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 06:01:02,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 06:01:02,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.153s +2025-10-02 06:01:02,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:01:02,286 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:02,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52299 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01: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 06:01: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 06:01:03,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.150s +2025-10-02 06:01:03,680 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:01:03,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:03,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54240 - "GET /api/v1/stats 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 06:01:04,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 06:01:04,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 06:01:04,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.154s +2025-10-02 06:01:04,472 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:01:04,472 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:04,472 - 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: 127.0.0.1:54252 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54260 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54268 - "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 06:01:06,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 06:01:06,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 06:01:06,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.165s +2025-10-02 06:01:06,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:01:06,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:06,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54272 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54286 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54292 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54302 - "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 06:01:08,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 06:01:08,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 06:01:08,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.172s +2025-10-02 06:01:08,985 - 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 06:01:08,985 - 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 06:01:08,986 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:01:09,760 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:01:09,761 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:01:09,810 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.272s +2025-10-02 06:01:10,033 - 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 06:01:10,033 - 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 06:01:10,034 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54304 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:10,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 06:01:10,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 06:01:10,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 06:01:10,835 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:01:10,835 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:10,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54316 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54330 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:11,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 06:01:11,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 06:01:12,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.165s +2025-10-02 06:01:12,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:01:12,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:12,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54338 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52305 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:01:12,910 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:01:12,910 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:01:12,969 - app.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 06:01:13,202 - 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 06:01:13,203 - 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 06:01:13,203 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52306 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54346 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44528 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:14,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 06:01:14,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 06:01:14,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.173s +2025-10-02 06:01:14,435 - 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 06:01:14,435 - 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 06:01:14,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44536 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44544 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44554 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:49998 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55352 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:18,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 06:01:18,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 06:01:18,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.152s +2025-10-02 06:01:18,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:01:18,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:18,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:49999 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:19,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 06:01:19,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 06:01:19,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.161s +2025-10-02 06:01:19,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:19,273 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:19,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55353 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44576 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44588 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12980 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44598 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44608 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:51262 - "GET /health HTTP/1.1" 200 OK +INFO: 211.226.69.49:57866 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36912 - "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 06:01: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 06:01:24,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 06:01:24,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.179s +2025-10-02 06:01:24,182 - 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 06:01:24,183 - 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 06:01:24,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55357 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:24,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 06:01:24,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 06:01:24,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.161s +2025-10-02 06:01:24,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:24,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:24,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36924 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36936 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51264 - "GET /health HTTP/1.1" 200 OK +INFO: 175.119.234.181:51265 - "GET /health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:24,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 06:01:24,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 06:01:24,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.165s +2025-10-02 06:01:25,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:01:25,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:25,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57867 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:01:25,226 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:01:25,227 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:01:25,290 - app.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 06:01:25,521 - 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 06:01:25,521 - 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 06:01:25,521 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:50474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55358 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36938 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36944 - "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 06:01:26,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 06:01:26,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 06:01:26,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.168s +2025-10-02 06:01:26,995 - 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 06:01:26,996 - 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 06:01:26,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36956 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36972 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36978 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36990 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55364 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:29,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 06:01:29,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 06:01:29,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.165s +2025-10-02 06:01:29,516 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:01:29,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:29,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55365 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36996 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:30,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 06:01:30,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 06:01:30,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.172s +2025-10-02 06:01:30,212 - 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 06:01:30,212 - 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 06:01:30,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37004 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37016 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37024 - "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 06:01:31,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 06:01:31,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 06:01:31,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:01:31,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:01:31,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:31,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:32,026 - 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 06:01:32,052 - 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=39.192 +2025-10-02 06:01:32,132 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.192 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 06:01:32,133 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:01:32,134 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 175.119.234.181:8401 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:9487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37028 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:32,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 06:01:32,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 06:01:32,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.159s +2025-10-02 06:01:32,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:01:32,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:32,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43020 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43030 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43034 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:35,304 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:01:35,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 06:01:35,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.161s +2025-10-02 06:01:35,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:35,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:35,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43050 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43066 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12999 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43068 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43082 - "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 06:01: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 06:01:38,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 06:01:38,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.164s +2025-10-02 06:01:38,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:01:38,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:38,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13000 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:39,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 06:01:39,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 06:01:39,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 06:01:39,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:01:39,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:39,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43086 - "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 06:01: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 06:01: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 06:01:40,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.161s +2025-10-02 06:01:40,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:40,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:40,265 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:40,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 06:01:40,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 06:01:40,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.151s +2025-10-02 06:01:40,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:01:40,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:40,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43088 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43090 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43092 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43098 - "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 06:01:43,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 06:01:43,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 06:01:43,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:01:44,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:01:44,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:44,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39260 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39268 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:45,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 06:01:45,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 06:01:45,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.161s +2025-10-02 06:01:45,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 06:01:45,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 06:01:45,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39276 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39280 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39294 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39302 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39312 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39318 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:48,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 06:01:48,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 06:01:48,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.174s +2025-10-02 06:01:48,585 - 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 06:01:48,585 - 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 06:01:48,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:49,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 06:01:49,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 06:01: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.166s +2025-10-02 06:01:50,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:01:50,087 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:50,087 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39332 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13018 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:50,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 06:01:50,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 06:01:50,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.146s +2025-10-02 06:01:50,556 - 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 06:01:50,556 - 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 06:01:50,556 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13019 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:50,861 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:01:50,882 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=113.885 +2025-10-02 06:01:50,979 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.885 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.096s +2025-10-02 06:01:50,980 - 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 06:01:50,980 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +INFO: 61.255.207.212:61842 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:39340 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39352 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39366 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:52,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 06:01:52,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 06:01:52,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.158s +2025-10-02 06:01:52,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:01:52,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:01:52,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39368 - "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 06:01:53,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 06:01:53,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 06:01:53,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.154s +2025-10-02 06:01:53,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 06:01:53,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 06:01:53,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57858 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57862 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:54,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:01:54,808 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.343 +2025-10-02 06:01:54,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.343 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 06:01:54,887 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:01:54,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:61849 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:60163 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57866 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:55,318 - 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 06:01:55,346 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=82.762 +2025-10-02 06:01:55,428 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.762 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:01:55,428 - 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 06:01:55,429 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 211.226.69.49:60164 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57878 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52332 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57888 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57904 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57906 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:61853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:01:59,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 06:01: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 06:01:59,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.169s +2025-10-02 06:01:59,703 - 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 06:01:59,703 - 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 06:01:59,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57912 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:01:59,735 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:01:59,754 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.501 +2025-10-02 06:01:59,837 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.501 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:01:59,837 - 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 06:01:59,838 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:61854 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:60173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:02:00,519 - 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 06:02:00,548 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=142.382 +2025-10-02 06:02:00,631 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.382 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:02:00,631 - 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 06:02:00,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 211.226.69.49:60174 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57924 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57932 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13032 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:01,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 06:02:01,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 06:02: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.166s +2025-10-02 06:02:01,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:02:01,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:01,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13033 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57946 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57956 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55008 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55016 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55038 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:06,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 06:02:06,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 06:02:06,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.190s +2025-10-02 06:02:07,016 - 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 06:02:07,017 - 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 06:02:07,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13039 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55042 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55044 - "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 06:02:08,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 06:02:08,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 06:02:08,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.171s +2025-10-02 06:02:08,196 - 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 06:02:08,197 - 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 06:02:08,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:08,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 06:02:08,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 06:02:09,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.162s +2025-10-02 06:02:09,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:02:09,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:09,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55068 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55078 - "GET /api/v1/realtime_status 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:55098 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35670 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:51294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35684 - "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 06:02:14,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 06:02:14,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 06:02:14,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.154s +2025-10-02 06:02:14,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:02:14,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:14,642 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51295 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:14,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:14,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 06:02:14,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 06:02:14,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:02:14,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:14,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13046 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35692 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:15,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 06:02:15,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 06:02:15,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.178s +2025-10-02 06:02:15,632 - 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 06:02:15,633 - 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 06:02:15,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13047 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35708 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35714 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35718 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35730 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35744 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:18,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 06:02:18,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 06:02: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.168s +2025-10-02 06:02:18,721 - 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 06:02:18,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 06:02:18,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:19,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 06:02:19,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 06:02:19,096 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:02:19,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 06:02:19,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:19,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35756 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35772 - "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 06:02: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 06:02: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 06:02:21,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.149s +2025-10-02 06:02:21,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:02:21,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:21,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35784 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35792 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:23,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 06:02:23,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 06:02:23,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.154s +2025-10-02 06:02:24,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:02:24,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:24,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46802 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46804 - "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 06:02:24,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 06:02:24,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 06:02:24,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 06:02:24,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:02:24,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:24,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53297 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:02:24,695 - 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 06:02:24,722 - 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=89.852 +2025-10-02 06:02:24,818 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.852 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 06:02:24,818 - 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 06:02:24,820 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +INFO: 220.77.167.192:53298 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:46810 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46826 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46844 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50555 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:29,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 06:02:29,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 06:02:29,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.162s +2025-10-02 06:02:29,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:02:29,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:29,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50556 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46860 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:60224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:30,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 06:02:30,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 06:02:30,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.159s +2025-10-02 06:02:30,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:02:30,896 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:30,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60225 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46874 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46882 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46890 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:56468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:02:32,806 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:02:32,833 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.695 +2025-10-02 06:02:32,917 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.695 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:02:32,918 - 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 06:02:32,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 211.197.218.214:56469 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:46894 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51648 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51660 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51676 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51678 - "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 06:02:36,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 06:02:36,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 06:02: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.166s +2025-10-02 06:02:36,946 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:02:36,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:36,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51694 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51702 - "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 06:02: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 06:02: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 06:02:37,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.171s +2025-10-02 06:02:37,974 - 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 06:02:37,975 - 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 06:02:37,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51710 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:61876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:02:38,545 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:02:38,546 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:02:38,606 - app.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 06:02:38,845 - 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 06:02:38,845 - 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 06:02:38,845 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:61877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51720 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51734 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51744 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:57874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51758 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:42,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 06:02:42,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 06:02:42,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.174s +2025-10-02 06:02:42,640 - 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 06:02:42,640 - 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 06:02:42,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57876 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51762 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61883 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44360 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:02:44,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 06:02:44,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 06:02:44,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.166s +2025-10-02 06:02:44,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 06:02:44,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 06:02:44,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61884 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:50026 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44364 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:45,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 06:02:45,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 06:02:45,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.173s +2025-10-02 06:02:45,710 - 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 06:02:45,710 - 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 06:02:45,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44372 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44382 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:47,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 06:02:47,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 06:02:47,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.167s +2025-10-02 06:02:47,355 - 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 06:02:47,356 - 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 06:02:47,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50027 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44398 - "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 06:02:47,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 06:02:47,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 06:02:47,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.167s +2025-10-02 06:02:47,757 - 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 06:02:47,757 - 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 06:02:47,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44422 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:49,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 06:02:49,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 06:02:49,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.156s +2025-10-02 06:02:49,229 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:02:49,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:49,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44438 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9558 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61890 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44452 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44466 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:02:51,350 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:02:51,381 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=219.478 +2025-10-02 06:02:51,461 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=219.478 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 06:02:51,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 06:02:51,461 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 175.119.234.181:9559 - "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 06:02:51,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 06:02:51,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 06:02:51,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.147s +2025-10-02 06:02:51,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 06:02:51,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 06:02:51,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61891 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:52,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:02:52,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 06:02:52,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 06:02:52,787 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:02:52,787 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:52,787 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44490 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58998 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59006 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53313 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:50034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59008 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:55,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 06:02:55,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 06:02:55,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.167s +2025-10-02 06:02:55,435 - 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 06:02:55,436 - 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 06:02:55,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53314 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59022 - "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 06:02:56,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 06:02:56,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 06:02:56,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.163s +2025-10-02 06:02:56,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:02:56,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:56,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:56,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 06:02:56,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 06:02:57,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.153s +2025-10-02 06:02:57,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:02:57,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:57,137 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59036 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59056 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:02:58,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 06:02:58,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 06:02:58,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.157s +2025-10-02 06:02:58,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:02:58,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:02:58,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59072 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59100 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:00,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 06:03:00,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 06:03:00,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.163s +2025-10-02 06:03:00,769 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:03:00,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:00,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59102 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:50043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63137 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:02,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 06:03:02,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 06:03:02,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.164s +2025-10-02 06:03:02,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:03:02,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:02,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59114 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:02,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 06:03:02,838 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.707 +2025-10-02 06:03:02,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.707 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 06:03:02,912 - 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 06:03:02,912 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 61.255.207.212:63138 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:55409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39838 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39844 - "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 06:03:04,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 06:03:04,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 06:03:04,373 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:03:04,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:03:04,494 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:04,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:05,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 06:03:05,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 06:03:05,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.154s +2025-10-02 06:03:05,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:03:05,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:05,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39872 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39882 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39890 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:61916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39904 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:50050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39912 - "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 06:03: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 06:03:08,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 06:03: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.160s +2025-10-02 06:03:09,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:03:09,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:09,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:09,055 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:09,078 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.619 +2025-10-02 06:03:09,153 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.619 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 06:03:09,153 - 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 06:03:09,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 61.255.207.212:63144 - "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 06:03:09,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 06:03:09,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 06:03:09,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.151s +2025-10-02 06:03:09,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:03:09,328 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:09,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39922 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39932 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:60265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39944 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:11,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 06:03:11,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 06:03:11,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 06:03:11,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:03:11,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:11,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39952 - "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 06:03:12,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 06:03:12,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 06:03:12,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.169s +2025-10-02 06:03:12,496 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +2025-10-02 06:03:12,496 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:12,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:12,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 06:03:12,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 06:03:12,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.172s +2025-10-02 06:03:12,863 - 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 06:03:12,863 - 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 06:03:12,863 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39968 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39982 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:14,043 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:03:14,070 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.633 +2025-10-02 06:03:14,146 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.633 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:03:14,146 - 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 06:03:14,147 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:63151 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:8490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:14,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 06:03:14,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 06:03:14,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.164s +2025-10-02 06:03:14,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:03:14,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:14,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43456 - "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 06:03:15,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 06:03:15,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 06:03:15,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.163s +2025-10-02 06:03:15,458 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:03:15,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:15,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43468 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43474 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43484 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:61928 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:18,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 06:03:18,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 06:03:18,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 06:03:18,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:03:18,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:18,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43486 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:57791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43496 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:43498 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8495 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:20,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 06:03:20,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 06:03:20,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.169s +2025-10-02 06:03:21,027 - 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 06:03:21,028 - 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 06:03:21,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:61929 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43508 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43516 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49311 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:21,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 06:03:21,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 06:03:21,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.173s +2025-10-02 06:03:22,045 - 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 06:03:22,045 - 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 06:03:22,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8496 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43526 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:03:22,204 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:03:22,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:03:22,262 - app.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 06:03:22,495 - 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 06:03:22,496 - 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 06:03:22,496 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:57802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49312 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:22,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 06:03:22,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 06:03:22,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.150s +2025-10-02 06:03:22,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:03:22,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:22,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50584 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43536 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37036 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37038 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:26,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 06:03:26,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 06:03:26,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.150s +2025-10-02 06:03:26,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:03:26,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:26,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:50058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:26,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 06:03:26,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 06:03:26,666 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:03:26,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:03:26,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:26,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:27,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 06:03:27,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 06:03:27,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.157s +2025-10-02 06:03:27,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:03:27,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:27,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37062 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37076 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:03:27,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 06:03:27,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 06:03:27,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.162s +2025-10-02 06:03:27,993 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:03:27,994 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:27,994 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:28,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 06:03:28,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 06:03:28,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.165s +2025-10-02 06:03:28,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:03:28,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:28,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:55906 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:28,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 06:03:28,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 06:03:28,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.133s +2025-10-02 06:03:28,949 - 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 06:03:28,949 - 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 06:03:28,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:29,140 - 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 06:03:29,169 - 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=123.426 +2025-10-02 06:03:29,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=123.426 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:03:29,257 - 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 06:03:29,257 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 175.119.234.181:55907 - "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 06:03:29,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 06:03:29,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 06:03:29,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.147s +2025-10-02 06:03:29,566 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:03:29,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:29,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:30,113 - 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 06:03:30,139 - 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=127.687 +2025-10-02 06:03:30,215 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=127.687 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:03:30,216 - 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 06:03:30,216 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 220.77.167.192:52351 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:37092 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37094 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37098 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37106 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03: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 06:03:32,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 06:03:33,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.156s +2025-10-02 06:03:33,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:03:33,129 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:33,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59872 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59888 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:50065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59900 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:57889 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:36,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 06:03:36,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 06:03:36,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.174s +2025-10-02 06:03:36,661 - 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 06:03:36,661 - 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 06:03:36,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59906 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:03:36,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 06:03:36,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 06:03:36,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.284s +2025-10-02 06:03:37,105 - 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 06:03:37,106 - 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 06:03:37,106 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:2474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:57890 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49321 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:37,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 06:03:37,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 06:03:37,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.151s +2025-10-02 06:03:37,540 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:03:37,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:37,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49322 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:37,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 06:03:37,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 06:03:37,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.136s +2025-10-02 06:03:37,813 - 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 06:03:37,813 - 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 06:03:37,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59922 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59942 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59958 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59960 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59970 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59972 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:50072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59986 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:43,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 06:03: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 06:03:43,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.156s +2025-10-02 06:03:43,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 06:03:43,392 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:43,392 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50073 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:43,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 06:03:43,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 06:03:43,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.159s +2025-10-02 06:03:43,724 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:03:43,724 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:43,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:43,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 06:03:43,861 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:03:43,898 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:03:44,007 - 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 06:03:44,007 - 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 06:03:44,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49470 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49478 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:55927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49490 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:45,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 06:03:45,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 06:03:45,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.152s +2025-10-02 06:03:45,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:03:45,549 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:45,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:03:45,711 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:03:45,712 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:03:45,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.274s +2025-10-02 06:03:45,986 - 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 06:03:45,986 - 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 06:03:45,986 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8520 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:46,059 - 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 06:03:46,066 - 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=61.471 +2025-10-02 06:03:46,126 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.471 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.059s +2025-10-02 06:03:46,126 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.059s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.060s +2025-10-02 06:03:46,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.060s +INFO: 175.119.234.181:13140 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:49506 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:46,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 06:03:46,416 - 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=112.323 +2025-10-02 06:03:46,489 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.323 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.071s +2025-10-02 06:03:46,489 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 06:03:46,490 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +INFO: 61.255.207.212:55434 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:49522 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49536 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:60346 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:47,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 06:03:47,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 06:03:47,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.162s +2025-10-02 06:03:48,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:03:48,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 06:03:48,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60347 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49540 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49548 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:50078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:51,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 06:03:51,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 06:03:51,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.167s +2025-10-02 06:03:52,085 - 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 06:03:52,085 - 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 06:03:52,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49596 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:03:52,891 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:03:52,892 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:03:52,946 - app.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 06:03:53,176 - 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 06:03:53,176 - 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 06:03:53,176 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:50079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49612 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:53,252 - 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 06:03:53,278 - 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=147.098 +2025-10-02 06:03:53,367 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=147.098 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:03:53,368 - 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 06:03:53,369 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:55441 - "POST /api/v1/run_plugin_gen_image 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 06:03: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 06:03:53,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 06:03:53,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.155s +2025-10-02 06:03:53,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:03:53,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 06:03:53,958 - 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: 127.0.0.1:52838 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52844 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:55,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 06:03:55,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 06:03:55,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.156s +2025-10-02 06:03:55,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:03:55,174 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:55,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:55,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 06:03:55,581 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.041 +2025-10-02 06:03:55,666 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.041 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:03:55,667 - 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 06:03:55,667 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 39.112.59.88:50607 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:2499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:56,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 06:03:56,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 06:03:56,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.154s +2025-10-02 06:03:56,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:03:56,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:56,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52854 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:03:57,309 - 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 06:03:57,335 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=27.097 +2025-10-02 06:03:57,413 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.097 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:03:57,413 - 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 06:03:57,414 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:55446 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:8536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52862 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52874 - "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 06:03:57,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 06:03:57,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 06:03:57,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 06:03:57,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:03:57,955 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:03:57,955 - 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: 127.0.0.1:52878 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:03:59,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 06:03:59,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 06:03:59,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.144s +2025-10-02 06:03:59,149 - 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 06:03:59,149 - 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 06:03:59,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236: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 06:04:00,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 06:04:00,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 06:04:00,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.156s +2025-10-02 06:04:00,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:04:00,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:00,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52884 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:57885 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04: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 06:04:00,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 06:04:00,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.153s +2025-10-02 06:04:00,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 06:04:00,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:00,881 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:01,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 06:04:01,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 06:04:01,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 06:04:01,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 06:04:01,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:01,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57886 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52896 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52902 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:55937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:02,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 06:04: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 06:04: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.159s +2025-10-02 06:04:02,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:04:02,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:02,733 - 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: 127.0.0.1:52918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:03,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 06:04:03,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 06:04:03,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.167s +2025-10-02 06:04:03,248 - 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 06:04:03,248 - 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 06:04:03,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55938 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:03,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 06:04:03,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 06:04:03,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.166s +2025-10-02 06:04:03,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:04:03,636 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:03,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52568 - "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 06:04:03,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 06:04:03,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 06:04:03,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.145s +2025-10-02 06:04:04,099 - 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 06:04:04,099 - 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 06:04:04,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52570 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52582 - "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 06:04:04,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 06:04:04,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 06:04:04,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.168s +2025-10-02 06:04:05,034 - 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 06:04:05,034 - 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 06:04:05,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52594 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:06,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 06:04:06,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 06:04:06,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.154s +2025-10-02 06:04:06,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:04:06,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:06,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:60365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:07,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 06:04:07,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 06:04:07,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.163s +2025-10-02 06:04:07,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:04:07,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:07,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60366 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52604 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52612 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52616 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52632 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52646 - "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 06:04:11,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 06:04:11,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 06:04:11,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.146s +2025-10-02 06:04:11,483 - 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 06:04:11,483 - 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 06:04:11,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52648 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52658 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53098 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53122 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50634 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53136 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53140 - "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 06:04:17,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 06:04:17,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 06:04:17,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.163s +2025-10-02 06:04:18,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:04:18,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:18,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:18,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 06:04:18,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 06:04: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.173s +2025-10-02 06:04:18,447 - 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 06:04:18,447 - 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 06:04:18,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53152 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53168 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:20,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 06:04:20,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 06:04:20,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.163s +2025-10-02 06:04:20,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:04:20,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:20,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53176 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:60377 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:20,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 06:04:20,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 06:04:20,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.188s +2025-10-02 06:04:20,954 - 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 06:04:20,955 - 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 06:04:20,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53182 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53190 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63209 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:04:23,252 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:04:23,255 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:04:23,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.308s +2025-10-02 06:04:23,563 - 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 06:04:23,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 06:04:23,564 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:60378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63210 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39246 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39262 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:39268 - "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 06:04:23,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 06:04:23,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 06:04:23,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.152s +2025-10-02 06:04:23,927 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:04:23,927 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:23,927 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50635 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39270 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49349 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39272 - "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 06:04:26,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 06:04:26,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 06:04:26,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.166s +2025-10-02 06:04:26,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:04:26,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:26,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39280 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39292 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39308 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39310 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39312 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39320 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39334 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39350 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:55955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39362 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:32,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 06:04:32,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 06:04:32,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.146s +2025-10-02 06:04:33,070 - 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 06:04:33,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 06:04:33,071 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39368 - "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 06:04:33,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 06:04: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 06:04:33,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.161s +2025-10-02 06:04:33,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 06:04:33,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:33,694 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:04: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 06:04: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 06:04:33,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.165s +2025-10-02 06:04:34,023 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:04:34,023 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:34,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50460 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:34,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 06:04:34,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 06:04:34,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.162s +2025-10-02 06:04:34,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:04:34,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:34,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50472 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50492 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13199 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:37,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 06:04:37,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 06:04: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.160s +2025-10-02 06:04:37,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:04:37,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:37,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13200 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:60437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50500 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:37,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 06:04:37,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 06:04:37,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.182s +2025-10-02 06:04:37,916 - 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 06:04:37,916 - 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 06:04:37,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50510 - "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 06:04: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 06:04:38,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 06:04: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.147s +2025-10-02 06:04:38,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 06:04:38,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 06:04:38,593 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50514 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:39,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 06:04:39,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 06:04:39,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:04:39,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:04:39,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:39,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50522 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:04:40,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 06:04:40,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 06:04:40,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.160s +2025-10-02 06:04:40,331 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:04:40,331 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:40,331 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53361 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50524 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50538 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55470 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50542 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:42,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 06:04:42,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 06:04:42,247 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:04:42,371 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:04:42,371 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:42,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50552 - "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 06:04:42,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 06:04:42,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 06:04:42,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.168s +2025-10-02 06:04:42,702 - 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 06:04:42,703 - 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 06:04:42,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55471 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:50092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:04:42,928 - 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 06:04:42,950 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=84.987 +2025-10-02 06:04:43,041 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.987 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:04:43,041 - 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 06:04:43,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 61.255.207.212:50093 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:43,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 06:04:43,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 06:04:43,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.149s +2025-10-02 06:04:43,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:04:43,502 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:43,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40554 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40576 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40596 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:50099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:47,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 06:04:47,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 06:04:47,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.172s +2025-10-02 06:04:47,915 - 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 06:04:47,915 - 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 06:04:47,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55477 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:04:48,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 06:04:48,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 06:04:48,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.137s +2025-10-02 06:04:48,262 - 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 06:04:48,262 - 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 06:04:48,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40606 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:04:48,288 - 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 06:04:48,318 - 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.702 +2025-10-02 06:04:48,401 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=115.702 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:04:48,401 - 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 06:04:48,402 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:50100 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:40610 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:04:48,647 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:04:48,648 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:04:48,701 - app.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 06:04:48,925 - 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 06:04:48,926 - 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 06:04:48,926 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:04:49,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 06:04:49,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 06:04:49,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.153s +2025-10-02 06:04:49,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:04:49,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:49,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40624 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40632 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40648 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53369 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40654 - "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 06:04:51,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 06:04:51,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 06:04: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.156s +2025-10-02 06:04:51,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:04:51,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:51,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53370 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40662 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:52,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 06:04:52,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 06:04:52,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.149s +2025-10-02 06:04:52,964 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:04:52,964 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:52,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:50106 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40670 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:04:53,419 - 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 06:04:53,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=62.934 +2025-10-02 06:04:53,535 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.934 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:04:53,535 - 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 06:04:53,536 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:50107 - "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 06:04:54,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 06:04:54,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 06:04:54,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.168s +2025-10-02 06:04:54,384 - 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 06:04:54,384 - 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 06:04:54,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42606 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:04:54,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 06:04:54,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 06:04:54,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.150s +2025-10-02 06:04:54,829 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:04:54,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:54,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 127.0.0.1:42608 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:04:55,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 06:04:55,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 06:04:55,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.156s +2025-10-02 06:04:55,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:04:55,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:04:55,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42616 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:42624 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42636 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:04:58,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 06:04:58,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:04:58,806 - app.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 06:04:59,057 - 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 06:04:59,057 - 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 06:04:59,057 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:55493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53375 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42644 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42654 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88: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 06:05:00,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 06:05:00,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 06:05:00,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.157s +2025-10-02 06:05:00,468 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:00,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:00,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42660 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52388 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42664 - "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 06:05:01,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 06:05:01,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 06:05:01,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.171s +2025-10-02 06:05:01,645 - 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 06:05:01,645 - 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 06:05:01,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52389 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:01,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 06:05:01,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 06:05:01,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.134s +2025-10-02 06:05:01,939 - 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 06:05:01,939 - 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 06:05:01,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42668 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:02,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 06:05:02,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 06:05:02,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.169s +2025-10-02 06:05:02,377 - 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 06:05:02,377 - 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 06:05:02,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42678 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62001 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:05:02,791 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:05:02,819 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.465 +2025-10-02 06:05:02,902 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.465 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:05:02,902 - 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 06:05:02,904 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:62002 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47880 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47888 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47892 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47906 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62008 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:05:06,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 06:05:06,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 06:05:06,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.296s +2025-10-02 06:05:06,591 - 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 06:05:06,592 - 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 06:05:06,592 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47912 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:05:07,104 - 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 06:05:07,134 - 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.353 +2025-10-02 06:05:07,225 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.353 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:05:07,225 - 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 06:05:07,227 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 61.255.207.212:62009 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47920 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8582 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47936 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:08,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 06:05:08,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 06:05:08,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.153s +2025-10-02 06:05:08,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:05:08,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:08,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47940 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47954 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47956 - "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 06:05:10,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 06:05:10,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 06:05:10,492 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:05:10,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:10,615 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:10,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47966 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47978 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47988 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:05:12,968 - 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 06:05:13,004 - 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=107.197 +2025-10-02 06:05:13,114 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.197 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.109s +2025-10-02 06:05:13,114 - 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 06:05:13,116 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.112s +INFO: 61.255.207.212:62014 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47994 - "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 06:05:13,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 06:05:13,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 06:05:13,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.153s +2025-10-02 06:05:13,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:05:13,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:13,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:60315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:05:14,306 - 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 06:05:14,329 - 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=67.102 +2025-10-02 06:05:14,422 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.102 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 06:05:14,423 - 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 06:05:14,424 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 211.197.218.214:60316 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:48448 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48464 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:15,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 06:05:15,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 06:05:15,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.149s +2025-10-02 06:05:15,323 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:05:15,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:15,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:05:15,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 06:05:15,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 06:05:15,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.162s +2025-10-02 06:05:15,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:05:15,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:15,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:50117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48494 - "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 06:05:16,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 06:05:16,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 06:05:16,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.152s +2025-10-02 06:05:16,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:05:16,836 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:16,836 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:17,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 06:05:17,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 06:05:17,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.162s +2025-10-02 06:05:17,176 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:05:17,176 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:17,177 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48500 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48510 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:57894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50687 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:18,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 06:05:18,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 06:05:18,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.168s +2025-10-02 06:05:18,871 - 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 06:05:18,872 - 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 06:05:18,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57895 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48524 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:19,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 06:05:19,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 06:05:19,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.147s +2025-10-02 06:05:19,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:05:19,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:19,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50688 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:63355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48528 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:19,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 06:05:19,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 06:05:19,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.156s +2025-10-02 06:05:19,821 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:05:19,821 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:19,821 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:20,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 06:05:20,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 06:05:20,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.148s +2025-10-02 06:05:20,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:05:20,346 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:20,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05: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 06:05:20,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 06:05:20,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.138s +2025-10-02 06:05:20,637 - 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 06:05:20,638 - 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 06:05:20,638 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48544 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48552 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53387 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:21,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 06:05:21,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 06:05:21,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.167s +2025-10-02 06:05:21,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 06:05:21,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 06:05:21,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53388 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:60502 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49393 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:23,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 06:05:23,509 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:23,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.162s +2025-10-02 06:05:23,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:05:23,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:23,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49394 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44106 - "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 06:05:23,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 06:05:23,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 06:05:23,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.168s +2025-10-02 06:05:23,999 - 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 06:05:24,000 - 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 06:05:24,000 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60503 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50707 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44114 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44120 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:25,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 06:05:25,694 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:05:25,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.166s +2025-10-02 06:05:25,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:05:25,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:25,861 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50708 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44148 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:26,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 06:05:26,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 06:05:26,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.162s +2025-10-02 06:05:26,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:05:26,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:26,185 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44164 - "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 06:05:26,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 06:05:26,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 06:05:27,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 06:05:27,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:27,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:27,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05: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 06:05: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 06:05:27,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 06:05:27,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:05:27,856 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:27,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44166 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44176 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:28,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 06:05:28,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 06:05:28,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.173s +2025-10-02 06:05:28,955 - 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 06:05:28,955 - 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 06:05:28,955 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44182 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:29,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 06:05:29,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 06:05:29,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.157s +2025-10-02 06:05:29,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:29,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:29,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49401 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44190 - "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 06:05:30,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 06:05:30,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 06:05: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.156s +2025-10-02 06:05:30,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:05:30,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:30,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49402 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:30,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 06:05:30,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 06:05:30,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.151s +2025-10-02 06:05:30,698 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:05:30,698 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:30,699 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44204 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44212 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44222 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:32,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 06:05:32,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 06:05:32,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.152s +2025-10-02 06:05:32,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 06:05:32,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 06:05:32,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44230 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:33,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 06:05:33,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 06:05:33,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 06:05:33,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 06:05:33,885 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:33,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48724 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48738 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48748 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:35,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 06:05:35,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 06:05:35,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.167s +2025-10-02 06:05:35,299 - 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 06:05:35,299 - 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 06:05:35,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:35,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 06:05:35,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 06:05:35,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.161s +2025-10-02 06:05:35,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:05:35,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:35,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48758 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50723 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48764 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48774 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:05:37,454 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:05:37,454 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:05:37,513 - app.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 06:05:37,753 - 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 06:05:37,753 - 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 06:05:37,753 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:50724 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:60521 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48780 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48794 - "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 06:05:39,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 06:05:39,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 06:05:39,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.154s +2025-10-02 06:05:39,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:05:39,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:39,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48812 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48818 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55547 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:05:41,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 06:05:41,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 06:05:41,656 - app.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 06:05:41,890 - 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 06:05:41,890 - 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 06:05:41,890 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:55548 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48822 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48828 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48844 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8617 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46912 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:44,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 06:05:44,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 06:05:44,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.146s +2025-10-02 06:05:44,576 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:05:44,576 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:44,576 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46920 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46932 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46934 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:46,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 06:05:46,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 06:05:46,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.157s +2025-10-02 06:05:47,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:05:47,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:47,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:52997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46938 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:47,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 06:05:47,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 06:05:47,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.159s +2025-10-02 06:05:47,758 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:05:47,758 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:47,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46952 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46960 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46966 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46976 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46982 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:52,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 06:05:52,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 06:05: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.144s +2025-10-02 06:05:52,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 06:05:52,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 06:05:52,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46998 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47000 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60538 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:52,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 06:05:52,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 06:05:52,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.182s +2025-10-02 06:05:53,088 - 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 06:05:53,088 - 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 06:05:53,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47002 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:53,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 06:05:53,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 06:05: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.170s +2025-10-02 06:05:54,127 - 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 06:05:54,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:54,128 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60539 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41726 - "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 06:05:54,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 06:05:54,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 06:05:54,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.169s +2025-10-02 06:05:54,910 - 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 06:05:54,910 - 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 06:05:54,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52424 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41728 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:55,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 06:05:55,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 06:05:55,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.161s +2025-10-02 06:05:55,524 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:05:55,524 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:55,525 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52425 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41730 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41736 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41750 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:41752 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:57,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 06:05:57,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 06:05:57,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.150s +2025-10-02 06:05:57,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:05:57,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:57,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41754 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41764 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41774 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:05:59,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 06:05:59,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 06:05:59,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.151s +2025-10-02 06:05:59,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:05:59,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:05:59,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55568 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41782 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53416 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41792 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41806 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52429 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41810 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:03,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 06:06:03,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 06:06:03,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.180s +2025-10-02 06:06:03,259 - 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 06:06:03,259 - 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 06:06:03,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53417 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:03,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 06:06:03,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 06:06: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.163s +2025-10-02 06:06:03,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:06:03,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:03,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41812 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:04,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 06:06:04,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 06:06:04,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.153s +2025-10-02 06:06:04,618 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:06:04,618 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:04,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55572 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42768 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42778 - "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 06:06:05,097 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:05,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 06:06:05,132 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:06:05,254 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:06:05,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:05,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42790 - "GET /api/v1/stats 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 06:06:06,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 06:06:06,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 06:06:06,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 06:06:06,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:06:06,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:06,643 - 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: 127.0.0.1:42792 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42798 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:07,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 06:06:07,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 06:06: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.149s +2025-10-02 06:06:07,863 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:06:07,863 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:07,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42806 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42810 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:08,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 06:06:08,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 06:06:09,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.164s +2025-10-02 06:06:09,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:06:09,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:09,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53422 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:10,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 06:06:10,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 06:06:10,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.172s +2025-10-02 06:06:10,486 - 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 06:06:10,486 - 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 06:06:10,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42826 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:10,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 06:06:10,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 06:06:10,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.156s +2025-10-02 06:06:11,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 06:06:11,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:11,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42834 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:11,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 06:06:11,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 06:06:11,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.162s +2025-10-02 06:06:11,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:06:11,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:11,831 - 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: 127.0.0.1:42836 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:60581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42840 - "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 06:06:12,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:12,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06:12,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 06:06:13,048 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:06:13,048 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:13,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55584 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40286 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:13,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 06:06:13,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 06:06:13,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.175s +2025-10-02 06:06:14,055 - 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 06:06:14,055 - 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 06:06:14,055 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55585 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40302 - "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 06:06:15,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 06:06:15,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 06:06:15,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.158s +2025-10-02 06:06:15,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:06:15,297 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:15,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40308 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:53018 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40332 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:16,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 06:06:16,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 06:06: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.156s +2025-10-02 06:06:17,041 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:06:17,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:17,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53019 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40338 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:62077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:17,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 06:06:17,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 06:06:17,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.163s +2025-10-02 06:06:18,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:06:18,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:18,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:18,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 06:06:18,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 06:06:18,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.145s +2025-10-02 06:06:18,322 - 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 06:06:18,322 - 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 06:06:18,322 - 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: 127.0.0.1:40346 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40348 - "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 06:06:19,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 06:06:19,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 06:06:19,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.150s +2025-10-02 06:06:19,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:06:19,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:19,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40350 - "GET /api/v1/stats 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 06:06:20,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 06:06:20,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 06:06:20,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.167s +2025-10-02 06:06:20,260 - 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 06:06:20,261 - 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 06:06:20,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40356 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:06:20,778 - 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 06:06:20,811 - 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=173.090 +2025-10-02 06:06:20,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=173.090 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.100s +2025-10-02 06:06:20,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.103s +2025-10-02 06:06:20,914 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +INFO: 175.119.234.181:9367 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:53430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40368 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:21,781 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:06:21,781 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:06: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.152s +2025-10-02 06:06:21,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:06:21,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:21,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:62230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:22,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 06:06:22,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 06:06:22,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.146s +2025-10-02 06:06:23,045 - 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 06:06:23,045 - 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 06:06:23,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40370 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:23,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 06:06:23,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 06:06:23,480 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:06:23,597 - 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 06:06:23,597 - 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 06:06:23,597 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8658 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46484 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46486 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:24,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 06:06:24,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 06:06:24,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.166s +2025-10-02 06:06:25,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:06:25,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:25,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46496 - "GET /api/v1/stats 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 06:06:26,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 06:06:26,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 06:06:26,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.147s +2025-10-02 06:06:26,237 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:06:26,237 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:26,237 - 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: 127.0.0.1:46498 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53028 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:26,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 06:06:26,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 06:06:26,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.157s +2025-10-02 06:06:26,930 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:06:26,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:26,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53029 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46502 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46506 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:46518 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9371 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46528 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:28,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 06:06:28,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 06:06:28,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.144s +2025-10-02 06:06:28,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 06:06:28,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 06:06:28,591 - 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: 220.77.167.192:53435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:29,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 06:06:29,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 06:06:29,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.158s +2025-10-02 06:06:29,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:06:29,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:29,343 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:62373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46536 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:29,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 06:06:29,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 06:06:29,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.139s +2025-10-02 06:06:29,695 - 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 06:06:29,695 - 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 06:06:29,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:29,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 06:06:29,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 06:06:29,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.160s +2025-10-02 06:06:29,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:06:29,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:29,996 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46548 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46562 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46576 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46582 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:62527 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:34,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 06:06:34,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 06:06:34,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.147s +2025-10-02 06:06:34,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:06:34,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:34,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62528 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53362 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:06:35,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 06:06: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 06:06:35,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.171s +2025-10-02 06:06:35,471 - 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 06:06:35,471 - 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 06:06:35,471 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53366 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:35,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 06:06:35,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 06:06:35,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 06:06:36,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:06:36,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 06:06:36,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:06:36,339 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:06:36,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 06:06:36,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.265s +2025-10-02 06:06:36,604 - 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 06:06:36,604 - 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 06:06:36,605 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:55609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9377 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:53034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53380 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53382 - "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 06:06:37,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 06:06:37,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 06:06:37,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.166s +2025-10-02 06:06:37,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:06:37,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:37,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:37,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 06:06:37,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 06:06:37,415 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:06:37,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 06:06:37,540 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:37,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53396 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06: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 06:06: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 06:06:37,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.160s +2025-10-02 06:06:37,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 06:06:37,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:37,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53408 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53422 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53428 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53436 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53438 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62085 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:42,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 06:06:42,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 06:06:42,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.159s +2025-10-02 06:06:42,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:06:42,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:42,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62086 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53442 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53458 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49442 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 06:06:43,547 - 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 06:06:43,548 - 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 06:06:43,609 - 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.641s +2025-10-02 06:06:51,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 7.641s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 7.641s (avg: 2.547s/image) +2025-10-02 06:06:51,190 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 7.641s (avg: 2.547s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 06:06:51,190 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 175.119.234.181:9383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49443 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:60642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54618 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54620 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54630 - "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 06:06:53,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 06:06:53,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 06:06:53,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.181s +2025-10-02 06:06:53,506 - 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 06:06:53,507 - 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 06:06:53,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50600 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50608 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50610 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50620 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13318 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50628 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:06:57,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 06:06:57,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 06:06:57,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 06:06:57,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 06:06:57,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:06:57,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50640 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:06:57,597 - 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 06:06:57,627 - 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.702 +2025-10-02 06:06:57,716 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.702 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:06:57,716 - 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 06:06:57,718 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 175.119.234.181:13319 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:50654 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50664 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:50666 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50674 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:00,429 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(721, 721, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:00,449 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(721, 721, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=75.010 +2025-10-02 06:07:00,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.010 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 06:07:00,526 - 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 06:07:00,526 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:63311 - "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 06:07:00,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 06:07:00,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 06:07:00,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.166s +2025-10-02 06:07:00,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:07:00,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:00,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50686 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50700 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50714 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50722 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13323 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36092 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36100 - "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 06:07:05,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 06:07:05,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 06:07:05,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.163s +2025-10-02 06:07:05,205 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:07:05,205 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:05,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13324 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:53048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60660 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36124 - "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 06:07:06,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 06:07:06,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 06:07:06,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.131s +2025-10-02 06:07:06,718 - 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 06:07:06,718 - 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 06:07:06,719 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36134 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:07,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 06:07:07,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 06:07:07,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.152s +2025-10-02 06:07:07,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:07:07,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:07,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60661 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:08,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 06:07:08,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 06:07:08,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.178s +2025-10-02 06:07:08,224 - 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 06:07:08,224 - 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 06:07:08,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36140 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:08,633 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(721, 721, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:08,661 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(721, 721, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=65.320 +2025-10-02 06:07:08,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.320 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 06:07:08,741 - 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 06:07:08,741 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:63318 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36144 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36152 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36166 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36168 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36174 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36188 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:07:13,038 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:07:13,039 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:07:13,099 - app.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 06:07:13,344 - 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 06:07:13,345 - 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 06:07:13,345 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:49458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13329 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53461 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34492 - "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 06:07:14,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 06:07:14,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 06:07:14,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.178s +2025-10-02 06:07:14,559 - 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 06:07:14,559 - 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 06:07:14,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34500 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34502 - "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 06:07:15,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 06:07:15,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 06:07:15,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.158s +2025-10-02 06:07:15,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 06:07:15,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 06:07:15,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53462 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34510 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34526 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34528 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34540 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34544 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:19,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 06:07:19,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 06:07:19,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.201s +2025-10-02 06:07:19,983 - 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 06:07:19,983 - 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 06:07:19,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:07:20,216 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:07:20,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:07:20,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.271s +2025-10-02 06:07:20,488 - 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 06:07:20,489 - 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 06:07:20,489 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34548 - "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 06:07:20,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 06:07:20,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 06:07:20,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.148s +2025-10-02 06:07:20,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:07:20,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:20,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49465 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:21,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 06:07:21,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 06:07:21,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.184s +2025-10-02 06:07:21,578 - 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 06:07:21,578 - 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 06:07:21,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:21,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 06:07:21,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 06:07:21,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.153s +2025-10-02 06:07:21,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:07:21,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:21,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49466 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34572 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:23,764 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:07:23,803 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(999, 999, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=48.284 +2025-10-02 06:07:23,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.284 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.099s +2025-10-02 06:07:23,903 - 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 06:07:23,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.103s +INFO: 175.119.234.181:8677 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:41210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41224 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:24,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 06:07:24,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 06:07:24,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 06:07:24,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 06:07:24,636 - 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 06:07:24,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41240 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41250 - "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 06:07:26,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 06:07:26,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 06:07:26,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.168s +2025-10-02 06:07:26,759 - 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 06:07:26,759 - 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 06:07:26,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41262 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41268 - "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 06:07:28,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 06:07:28,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 06:07:28,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.162s +2025-10-02 06:07:28,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 06:07:28,218 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:28,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41276 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41292 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:41294 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:29,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 06:07:29,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 06:07:30,043 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:07:30,166 - 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 06:07:30,166 - 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 06:07:30,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53471 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41306 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41308 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41316 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:31,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:31,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 06:07:31,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.162s +2025-10-02 06:07:31,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:07:31,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:31,763 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8681 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41328 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41344 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55632 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60330 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:34,458 - 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 06:07:34,496 - 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=15.101 +2025-10-02 06:07:34,595 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.101 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.098s +2025-10-02 06:07:34,596 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 06:07:34,597 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +INFO: 61.255.207.212:55633 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:62117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60344 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07: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 06:07: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 06:07:36,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 06:07:36,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:07:36,442 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:36,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62118 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60350 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60370 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:38,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 06:07:38,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 06:07:38,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.192s +2025-10-02 06:07:38,389 - 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 06:07:38,389 - 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 06:07:38,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8682 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60374 - "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 06:07:38,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 06:07:38,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 06:07:38,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.154s +2025-10-02 06:07:38,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:07:38,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:38,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60384 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60398 - "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 06:07:39,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 06:07:39,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 06:07:39,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.165s +2025-10-02 06:07:40,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:07:40,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:40,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:40,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 06:07:40,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 06:07:40,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.167s +2025-10-02 06:07:40,917 - 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 06:07:40,917 - 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 06:07:40,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60424 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13349 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:42,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 06:07:42,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 06:07:42,105 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 06:07:42,231 - 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 06:07:42,231 - 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 06:07:42,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:42,263 - 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 06:07:42,286 - 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=40.662 +2025-10-02 06:07:42,373 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=40.662 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:07:42,373 - 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 06:07:42,375 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:55638 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:60432 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60446 - "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 06:07:43,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 06:07:43,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 06:07:43,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.161s +2025-10-02 06:07:43,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:07:43,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:43,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53984 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:44,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 06:07:44,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 06:07:44,234 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:07:44,354 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:07:44,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:44,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53990 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53996 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54000 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54016 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:07:47,229 - 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 06:07:47,269 - 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=25.563 +2025-10-02 06:07:47,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.563 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 06:07:47,363 - 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 06:07:47,364 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 61.255.207.212:55643 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:9440 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:07:47,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 06:07:47,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 06:07:47,658 - app.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 06:07:47,897 - 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 06:07:47,897 - 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 06:07:47,897 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54026 - "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 06:07:48,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 06:07:48,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 06:07:48,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 06:07:48,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:07:48,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:48,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9441 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:60724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54038 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54046 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:50,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 06:07:50,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 06:07:50,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.169s +2025-10-02 06:07:50,847 - 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 06:07:50,847 - 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 06:07:50,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54054 - "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 06:07:51,104 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:07:51,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 06:07:51,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.165s +2025-10-02 06:07:51,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:07:51,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:51,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:60725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54066 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54068 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13360 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:07:53,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 06:07:53,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 06:07:53,283 - app.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 06:07:53,526 - 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 06:07:53,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 06:07:53,527 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:49489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9455 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8689 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:53,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 06:07: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 06:07:53,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.175s +2025-10-02 06:07:53,978 - 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 06:07:53,978 - 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 06:07:53,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13364 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39190 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39194 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39202 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39218 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:56,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 06:07:56,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 06:07:56,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.182s +2025-10-02 06:07:56,356 - 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 06:07:56,356 - 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 06:07:56,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:57,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 06:07:57,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 06:07:57,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 06:07:57,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:07:57,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:07:57,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39220 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39236 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39248 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39262 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39274 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:07:59,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 06:07:59,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 06:07:59,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.180s +2025-10-02 06:07:59,698 - 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 06:07:59,698 - 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 06:07:59,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8690 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13377 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39276 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39282 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39290 - "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 06:08:01,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 06:08:01,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 06:08:01,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 06:08:01,892 - 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 06:08:01,893 - 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 06:08:01,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39294 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39308 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56640 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56648 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08: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 06:08: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 06:08:05,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.172s +2025-10-02 06:08:05,659 - 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 06:08:05,660 - 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 06:08:05,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56650 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13383 - "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: 127.0.0.1:56658 - "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 06:08:06,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 06:08:06,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 06:08:06,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.168s +2025-10-02 06:08:07,040 - 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 06:08:07,040 - 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 06:08:07,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:64504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56666 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56670 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:61208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56674 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:09,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 06:08:09,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 06:08:09,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.168s +2025-10-02 06:08:09,372 - 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 06:08:09,373 - 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 06:08:09,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:61209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56688 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:10,032 - 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 06:08:10,070 - 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.176 +2025-10-02 06:08:10,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=134.176 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:08:10,156 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:08:10,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 211.197.218.214:64505 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56694 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56710 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56726 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56736 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46600 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46616 - "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 06:08:13,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 06:08:13,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 06:08:13,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 06:08:14,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 06:08:14,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 06:08:14,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55658 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:14,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 06:08:14,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 06:08:14,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.171s +2025-10-02 06:08:14,469 - 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 06:08:14,469 - 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 06:08:14,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:14,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 06:08:14,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 06:08:14,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.120s +2025-10-02 06:08:14,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.120s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.120s (avg: 0.120s/image) +2025-10-02 06:08:14,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.120s (avg: 0.120s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:14,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46620 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46634 - "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 06:08:16,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 06:08:16,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 06:08:16,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.157s +2025-10-02 06:08:16,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:08:16,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:16,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46642 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:17,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 06:08:17,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 06:08: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.150s +2025-10-02 06:08:17,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:08:17,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:17,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46648 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46654 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46658 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46660 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46664 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46676 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52320 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52330 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52336 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:25,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:08:25,190 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=95.911 +2025-10-02 06:08:25,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.911 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:08:25,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:08:25,277 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:62141 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52342 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52358 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52370 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:64727 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52386 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:28,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 06:08:28,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 06:08:28,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.168s +2025-10-02 06:08:28,635 - 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 06:08:28,636 - 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 06:08:28,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52400 - "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 06:08:28,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 06:08:28,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 06:08:28,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 06:08:28,949 - 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 06:08:28,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 06:08:28,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64728 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52406 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52412 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:52420 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52432 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:31,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 06:08:31,111 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.730 +2025-10-02 06:08:31,214 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.730 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.102s +2025-10-02 06:08:31,215 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.102s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-02 06:08:31,216 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +INFO: 61.255.207.212:62149 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52444 - "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 06:08:32,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 06:08:32,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 06:08:32,455 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:08:32,574 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:08:32,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:32,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52458 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40738 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8705 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40752 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62153 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:35,819 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:08:35,835 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.165 +2025-10-02 06:08:35,923 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.165 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:08:35,923 - 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 06:08:35,925 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:62154 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:40768 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:35,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 06:08:35,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 06:08:35,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.156s +2025-10-02 06:08:36,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 06:08:36,101 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:36,102 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40770 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40780 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40788 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40798 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40810 - "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 06:08:39,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 06:08:39,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 06:08:39,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.161s +2025-10-02 06:08:40,116 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:08:40,116 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:40,116 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40816 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40820 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8714 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40822 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40828 - "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 06:08:43,068 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:08:43,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 06:08:43,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.169s +2025-10-02 06:08:43,239 - 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 06:08:43,239 - 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 06:08:43,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40832 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45924 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:65146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45938 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:08:45,269 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:08:45,270 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:08:45,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.286s +2025-10-02 06:08:45,556 - 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 06:08:45,556 - 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 06:08:45,557 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:50856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45946 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45954 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45956 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:08:47,413 - 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 06:08:47,454 - 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=43.294 +2025-10-02 06:08:47,549 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.294 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 06:08:47,549 - 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 06:08:47,550 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 220.77.167.192:52475 - "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 06:08:47,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 06:08:47,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 06:08: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.166s +2025-10-02 06:08:47,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:08:47,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:47,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8715 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45960 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45974 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:08:49,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 06:08:49,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:08:49,235 - app.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 06:08:49,462 - 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.144s/image) +2025-10-02 06:08:49,463 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:08:49,463 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:65151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45978 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45994 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46002 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46006 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50860 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46012 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:08:52,844 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:08:52,845 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:08:52,901 - app.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 06:08:53,131 - 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 06:08:53,132 - 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 06:08:53,132 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:49518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46020 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8721 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36862 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:65450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36874 - "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 06:08:54,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 06:08:54,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 06:08:54,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.147s +2025-10-02 06:08:55,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:08:55,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:55,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65461 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:55,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 06:08:55,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 06:08:55,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.148s +2025-10-02 06:08:55,791 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:08:55,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:55,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50861 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36884 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:56,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 06:08:56,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 06:08:56,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.175s +2025-10-02 06:08:56,306 - 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 06:08:56,306 - 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 06:08:56,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8722 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36894 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36896 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:4328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36908 - "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 06:08:58,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 06:08:58,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 06:08:58,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.166s +2025-10-02 06:08:58,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:08:58,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 06:08:58,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4329 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:08:58,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 06:08:58,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 06:08:58,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.151s +2025-10-02 06:08:59,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:08:59,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:08:59,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36922 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36932 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36940 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:64061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36948 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:00,965 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:00,986 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=183.590 +2025-10-02 06:09:01,072 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=183.590 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:09:01,073 - 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 06:09:01,075 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 175.119.234.181:64062 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36964 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:01,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 06:09:01,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 06:09:01,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:09:01,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 06:09:01,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:01,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8726 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36970 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:02,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 06:09:02,425 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:02,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.166s +2025-10-02 06:09:02,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:09:02,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:02,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8727 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36980 - "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 06:09:03,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 06:09:03,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 06:09:03,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.147s +2025-10-02 06:09:03,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:09:03,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:03,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59402 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:4333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:03,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 06:09:03,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 06:09:03,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.150s +2025-10-02 06:09:04,083 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:09:04,083 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:04,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59416 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59432 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:49397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09: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 06:09: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 06:09: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.165s +2025-10-02 06:09: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 06:09:06,858 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:06,858 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:49408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59448 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59460 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59462 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59466 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:09,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 06:09:09,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 06:09:09,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.151s +2025-10-02 06:09:09,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:09:09,765 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:09,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59482 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59484 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62177 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:10,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 06:09:10,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 06:09:10,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.137s +2025-10-02 06:09:10,854 - 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 06:09:10,854 - 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 06:09:10,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62178 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59502 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 06:09:12,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 06:09:12,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 06:09:12,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.181s +2025-10-02 06:09:12,932 - 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 06:09:12,932 - 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 06:09:12,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:13,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 06:09:13,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 06:09:13,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.158s +2025-10-02 06:09:13,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:09:13,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:13,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57916 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59506 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42378 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42388 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:09:15,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 06:09:15,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 06:09:15,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.149s +2025-10-02 06:09:15,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:09:15,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:15,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62185 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42394 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:16,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 06:09:16,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 06:09:16,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.144s +2025-10-02 06:09:16,358 - 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 06:09:16,358 - 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 06:09:16,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42402 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50888 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42408 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42412 - "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 06:09:18,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 06:09:18,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 06:09:18,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.168s +2025-10-02 06:09:18,223 - 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 06:09:18,224 - 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 06:09:18,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50889 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42422 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42430 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42448 - "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 06:09:21,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 06:09:21,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 06:09:21,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 06:09:21,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:09:21,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:21,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42460 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62189 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:22,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 06:09:22,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 06:09:22,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.165s +2025-10-02 06:09:22,757 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:09:22,757 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:22,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62190 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:49861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:23,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 06:09:23,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 06:09:23,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.187s +2025-10-02 06:09:23,374 - 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 06:09:23,374 - 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 06:09:23,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:49873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51710 - "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 06:09:23,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 06:09:23,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:09:23,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 06:09:23,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 06:09:23,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 06:09:23,827 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:63370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:24,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 06:09:24,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 06:09:24,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.152s +2025-10-02 06:09:24,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:09:24,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 06:09:24,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51712 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51720 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51722 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8752 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51724 - "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 06:09:26,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 06:09:26,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 06:09:26,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.142s +2025-10-02 06:09:26,841 - 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 06:09:26,842 - 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 06:09:26,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8753 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51736 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51740 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:09:28,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 06:09:28,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 06:09:28,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.154s +2025-10-02 06:09:28,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 06:09:28,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 06:09:28,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51756 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51760 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8757 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51772 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51778 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:51790 - "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 06:09:31,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 06:09:31,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 06:09:31,040 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:09:31,166 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:09:31,166 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:31,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:31,644 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:31,671 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.812 +2025-10-02 06:09:31,761 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.812 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:09:31,762 - 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 06:09:31,763 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 39.112.59.88:50902 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:51796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62201 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:33,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 06:09:33,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 06:09: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.141s +2025-10-02 06:09:33,373 - 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 06:09:33,373 - 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 06:09:33,373 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:33,594 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:33,626 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=96.096 +2025-10-02 06:09:33,709 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.096 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:09:33,710 - 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 06:09:33,710 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 175.119.234.181:10406 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:60014 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60016 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13472 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60034 - "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 06:09:35,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 06:09:35,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 06:09:35,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.140s +2025-10-02 06:09:36,057 - 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 06:09:36,057 - 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 06:09:36,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13473 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:60944 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60050 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:36,887 - 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 06:09:36,905 - 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=114.576 +2025-10-02 06:09:36,981 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.576 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:09:36,981 - 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 06:09:36,982 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 211.226.69.49:60945 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:60064 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60066 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62206 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:38,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 06:09:38,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 06:09:38,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.160s +2025-10-02 06:09:38,522 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:09:38,522 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:38,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62207 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8767 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60080 - "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 06:09:38,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 06:09:38,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 06:09:38,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.162s +2025-10-02 06:09:39,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:09:39,082 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:39,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8768 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60112 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60116 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:41,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 06:09: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 06:09: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.154s +2025-10-02 06:09:41,519 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:09:41,520 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:41,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50906 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:60955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60122 - "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 06:09:42,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 06:09:42,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 06:09:42,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.149s +2025-10-02 06:09:42,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:09:42,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:42,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:09:42,173 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:09:42,192 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(803, 803, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=145.212 +2025-10-02 06:09:42,275 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.212 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:09:42,275 - 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 06:09:42,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 211.226.69.49:60959 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:8773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:09:42,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 06:09:42,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 06:09:42,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +2025-10-02 06:09:42,973 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.263s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +2025-10-02 06:09:42,974 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.263s (avg: 0.132s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:09:42,974 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50907 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60130 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60144 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:09:43,371 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:09:43,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 06:09:43,423 - app.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 06:09:43,651 - 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.140s/image) +2025-10-02 06:09:43,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:09:43,652 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41092 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41104 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41116 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41120 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:47,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 06:09:47,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 06:09:47,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.169s +2025-10-02 06:09:47,459 - 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 06:09:47,459 - 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 06:09:47,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:48,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 06:09:48,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 06:09:48,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.151s +2025-10-02 06:09:48,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:09:48,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:48,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41132 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41144 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41158 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:63383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:49,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 06:09:49,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 06:09:49,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.146s +2025-10-02 06:09:49,856 - 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 06:09:49,856 - 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 06:09:49,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:50,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 06:09:50,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 06:09:50,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.153s +2025-10-02 06:09:50,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 06:09:50,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:50,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49552 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:51,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 06:09:51,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 06:09:51,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.145s +2025-10-02 06:09:51,395 - 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 06:09:51,395 - 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 06:09:51,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49553 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41172 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:52,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 06:09:52,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 06:09:52,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.156s +2025-10-02 06:09:52,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:09:52,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:52,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8784 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41174 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41184 - "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 06:09:52,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:09:52,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 06:09:52,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.151s +2025-10-02 06:09:52,906 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:09:52,906 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:52,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:53,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 06:09:53,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 06:09:53,239 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:09:53,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:09:53,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:53,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43094 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:53,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 06:09:53,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 06:09:53,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.150s +2025-10-02 06:09:54,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:09:54,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:54,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43106 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43120 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43124 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8788 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:56,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 06:09:56,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 06:09:56,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.160s +2025-10-02 06:09:56,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 06:09:56,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 06:09:56,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8789 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43134 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:09:57,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 06:09:57,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 06:09:57,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.165s +2025-10-02 06:09:57,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:09:57,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:09:57,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43136 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43142 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43144 - "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 06:09:58,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 06:09:58,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 06:09: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.140s +2025-10-02 06:09:59,033 - 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 06:09:59,033 - 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 06:09:59,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43150 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43170 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43182 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:43190 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43198 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:03,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 06:10:03,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 06:10:03,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.161s +2025-10-02 06:10:03,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:10:03,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:03,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58882 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:63396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58890 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58902 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49570 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58916 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58920 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:10:06,866 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:06,867 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:06,921 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.286s +2025-10-02 06:10:07,154 - 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 06:10:07,154 - 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 06:10:07,154 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:63397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:10:07,319 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:07,320 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:07,378 - app.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 06:10:07,595 - 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 06:10:07,595 - 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 06:10:07,595 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:07,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 06:10:07,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 06:10:07,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.137s +2025-10-02 06:10:07,901 - 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 06:10:07,901 - 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 06:10:07,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49571 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58928 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58942 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58952 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:09,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 06:10:09,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 06:10:09,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 06:10:09,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:10:09,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:09,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8812 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58956 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58972 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58980 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58988 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:12,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 06:10:12,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:10:12,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.171s +2025-10-02 06:10:12,353 - 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 06:10:12,353 - 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 06:10:12,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49576 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:12,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 06:10:12,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 06:10:12,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.158s +2025-10-02 06:10:12,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:10:12,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:12,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59000 - "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 06:10:13,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 06:10:13,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 06:10:13,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.186s +2025-10-02 06:10:13,595 - 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 06:10:13,595 - 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 06:10:13,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50676 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50688 - "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 06:10:14,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 06:10:14,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 06:10:14,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.159s +2025-10-02 06:10:14,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:10:14,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:14,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:14,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 06:10:14,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 06:10:14,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.162s +2025-10-02 06:10:15,064 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:10:15,065 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:15,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50694 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50704 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:50890 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49580 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:10:16,364 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:16,365 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:16,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.282s +2025-10-02 06:10:16,647 - 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 06:10:16,647 - 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 06:10:16,648 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:50891 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49581 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50710 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50718 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10460 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:10:17,892 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:17,893 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:17,943 - app.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 06:10:18,166 - 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 06:10:18,167 - 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 06:10:18,167 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:10461 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50728 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50744 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10: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 06:10: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 06:10:20,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.157s +2025-10-02 06:10:20,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:10:20,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:20,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50758 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50772 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50782 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:21,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 06:10:21,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 06:10:21,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.140s +2025-10-02 06:10:21,796 - 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 06:10:21,797 - 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 06:10:21,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:51065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:10:21,993 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:10:21,993 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:22,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.257s +2025-10-02 06:10:22,250 - 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 06:10:22,251 - 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 06:10:22,251 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:51066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:22,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:22,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 06:10:22,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.139s +2025-10-02 06:10:22,739 - 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 06:10:22,739 - 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 06:10:22,739 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50798 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60774 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60782 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:24,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 06:10:24,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 06:10:24,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.154s +2025-10-02 06:10:24,569 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:10:24,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:24,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60792 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:10:25,080 - 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 06:10:25,100 - 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.371 +2025-10-02 06:10:25,177 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.371 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 06:10:25,177 - 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 06:10:25,177 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 220.77.167.192:53530 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:60796 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60804 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:27,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 06:10:27,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 06:10: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.159s +2025-10-02 06:10:27,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:10:27,518 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:27,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60830 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:51498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50925 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:28,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 06:10:28,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 06:10:28,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.138s +2025-10-02 06:10:28,329 - 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 06:10:28,329 - 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 06:10:28,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:28,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 06:10:28,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 06:10:28,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 06:10:28,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 06:10:28,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 06:10:28,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:28,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 06:10:28,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 06:10:28,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.146s +2025-10-02 06:10:28,918 - 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 06:10:28,919 - 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 06:10:28,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50926 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60838 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62268 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:29,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 06:10:29,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 06:10:29,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.153s +2025-10-02 06:10:29,634 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:10:29,634 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:29,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62269 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60844 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:31,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 06:10:31,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 06:10:31,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 06:10:31,396 - 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 06:10:31,396 - 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 06:10:31,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:31,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 06:10:31,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 06:10:31,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.139s +2025-10-02 06:10:31,834 - 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 06:10:31,835 - 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 06:10:31,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60866 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60880 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60882 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:60888 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8835 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50930 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:34,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 06:10:34,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 06:10:34,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.176s +2025-10-02 06:10:34,956 - 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 06:10:34,956 - 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 06:10:34,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8836 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:57926 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38042 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:10:35,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 06:10:35,653 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:10:35,705 - app.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 06:10:35,925 - 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 06:10:35,925 - 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 06:10:35,925 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:57927 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38058 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38066 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:57749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:36,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 06:10:36,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 06:10:36,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.155s +2025-10-02 06:10:36,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 06:10:36,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:36,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:57750 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38082 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:37,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 06:10:37,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 06:10:37,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.154s +2025-10-02 06:10:37,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 06:10:37,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:37,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14164 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61057 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38094 - "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 06:10:38,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 06:10:38,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 06:10:38,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.151s +2025-10-02 06:10:38,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:10:38,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:38,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38104 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38106 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10: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 06:10: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 06:10:39,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.142s +2025-10-02 06:10:40,005 - 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 06:10:40,005 - 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 06:10:40,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38108 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38114 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38126 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38128 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38138 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:57755 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:43,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 06:10:43,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 06:10:43,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.151s +2025-10-02 06:10:43,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 06:10:43,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 06:10:43,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:57756 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54366 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54372 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54384 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:50943 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54390 - "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 06:10:47,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 06:10:47,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 06:10:47,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.168s +2025-10-02 06:10:47,439 - 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 06:10:47,439 - 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 06:10:47,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50944 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54392 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54396 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:10:49,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 06:10:49,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 06:10:49,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.160s +2025-10-02 06:10:49,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:10:49,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:49,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54406 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54408 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:50,560 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:10:50,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 06:10:50,593 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:10:50,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 06:10:50,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 06:10:50,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54418 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:57761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:52,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 06:10:52,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 06:10:52,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:10:52,225 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:10:52,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:52,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:57762 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54434 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:52,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 06:10:52,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 06:10:52,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.173s +2025-10-02 06:10:52,995 - 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 06:10:52,995 - 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 06:10:52,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54448 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 06:10:54,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 06:10:54,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 06:10:54,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 06:10:54,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:10:54,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:54,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41286 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41300 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:55,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 06:10:55,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 06:10:55,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.165s +2025-10-02 06:10:55,718 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:10:55,718 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:10:55,718 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41310 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41312 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:10:57,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 06:10:57,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 06:10:57,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.144s +2025-10-02 06:10:57,194 - 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 06:10:57,194 - 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 06:10:57,194 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41318 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41326 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:10:58,330 - 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 06:10:58,358 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=18.507 +2025-10-02 06:10:58,452 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.507 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 06:10:58,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.093s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.097s +2025-10-02 06:10:58,454 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 175.119.234.181:13537 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:55754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:10:58,788 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:10:58,812 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.292 +2025-10-02 06:10:58,912 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=105.292 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.099s +2025-10-02 06:10:58,912 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.099s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 06:10:58,914 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +INFO: 61.255.207.212:55755 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:41328 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41334 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41340 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41354 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41362 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:02,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 06:11:02,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 06:11:02,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 06:11:02,395 - 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 06:11:02,395 - 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 06:11:02,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41374 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:11:02,792 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:11:02,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=94.057 +2025-10-02 06:11:02,887 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.057 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 06:11:02,888 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:11:02,889 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:55762 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:58480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58490 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52552 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:04,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 06:11:04,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 06:11:04,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.167s +2025-10-02 06:11:04,896 - 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 06:11:04,896 - 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 06:11:04,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52553 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58496 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58504 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:58520 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63450 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:11:06,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 06:11:06,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 06:11:06,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.163s +2025-10-02 06:11:06,390 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:11:06,391 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:06,391 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63451 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:06,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 06:11:06,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 06:11:06,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.157s +2025-10-02 06:11:06,706 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:11:06,706 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:06,707 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:57770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55766 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58528 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58530 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:11:07,191 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:11:07,215 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.914 +2025-10-02 06:11:07,299 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=97.914 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:11:07,299 - 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 06:11:07,301 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:55767 - "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 06:11:07,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 06:11:07,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 06:11:07,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 06:11:07,491 - 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 06:11:07,491 - 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 06:11:07,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50961 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:08,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 06:11:08,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 06:11:08,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.177s +2025-10-02 06:11:08,274 - 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 06:11:08,274 - 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 06:11:08,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50962 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58550 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58554 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58578 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:61089 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:11,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 06:11:11,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 06:11:11,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.145s +2025-10-02 06:11:11,851 - 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 06:11:11,852 - 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 06:11:11,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61090 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58582 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58590 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58598 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50572 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:14,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 06:11:14,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 06:11:14,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.167s +2025-10-02 06:11:15,072 - 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 06:11:15,072 - 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 06:11:15,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50576 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50590 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50592 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50972 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:16,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 06:11:16,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 06:11:16,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.188s +2025-10-02 06:11:17,041 - 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 06:11:17,041 - 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 06:11:17,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50973 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50608 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50616 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50630 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50640 - "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 06:11:19,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 06:11:19,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 06:11:19,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.154s +2025-10-02 06:11:19,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:11:19,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:19,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50654 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:57778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:20,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 06:11:20,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 06:11:20,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.148s +2025-10-02 06:11:20,873 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:11:20,873 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:20,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:57779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50666 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50668 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50670 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:23,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 06:11:23,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 06:11:23,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.160s +2025-10-02 06:11:24,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:11:24,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:24,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63470 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58768 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50980 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58778 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58790 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:57783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:11:26,336 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:26,336 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:26,395 - app.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 06:11:26,619 - 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 06:11:26,619 - 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 06:11:26,620 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:50981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:57785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58802 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58810 - "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 06:11:28,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 06:11:28,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 06:11:28,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.143s +2025-10-02 06:11:28,147 - 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 06:11:28,147 - 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 06:11:28,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58820 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58822 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58828 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11: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 06:11: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 06:11:30,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.155s +2025-10-02 06:11:30,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:11:30,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:30,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58830 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50985 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58852 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:11:31,987 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:31,988 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:32,047 - app.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 06:11:32,281 - 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 06:11:32,281 - 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 06:11:32,281 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:50986 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58856 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:33,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 06:11:33,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 06:11:33,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.157s +2025-10-02 06:11:33,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:11:33,604 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:33,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51280 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:34,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 06:11:34,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 06:11: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.157s +2025-10-02 06:11:35,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 06:11:35,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 06:11:35,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53091 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51288 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51296 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13573 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:35,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 06:11:35,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 06:11:35,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.165s +2025-10-02 06:11:35,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:11:35,695 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:35,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13574 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51308 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51324 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:51336 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:50990 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:37,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 06:11:37,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 06:11:37,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.135s +2025-10-02 06:11:37,752 - 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 06:11:37,753 - 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 06:11:37,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:37,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 06:11:37,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 06:11:38,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 06:11:38,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:11:38,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:38,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:50991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51342 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51346 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8869 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51352 - "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 06:11:40,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 06:11:40,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 06:11:40,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.158s +2025-10-02 06:11:40,411 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:11:40,411 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:40,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8870 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51366 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51380 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51382 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13586 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:51149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:50995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:11:43,159 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:43,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 06:11:43,221 - app.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 06:11:43,444 - 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 06:11:43,445 - 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 06:11:43,445 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13587 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:51150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51394 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53297 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:11:43,866 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:43,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 06:11:43,923 - app.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 06:11:44,136 - 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 06:11:44,137 - 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 06:11:44,137 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:53300 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:50996 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53854 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53862 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:45,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:11:45,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 06:11:45,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.145s +2025-10-02 06:11:45,174 - 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 06:11:45,174 - 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 06:11:45,174 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53876 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:11:46,284 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:46,285 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:46,341 - app.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 06:11:46,574 - 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.144s/image) +2025-10-02 06:11:46,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:11:46,575 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8875 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53882 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:11:47,235 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:11:47,235 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:11:47,293 - app.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 06:11:47,521 - 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 06:11:47,521 - 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 06:11:47,521 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:55797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53890 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53902 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53920 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 06:11:50,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 06:11:50,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 06:11: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.146s +2025-10-02 06:11:50,495 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:11:50,495 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:50,496 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53928 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53944 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:51,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 06:11:51,119 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:11:51,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:11:51,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:11:51,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:51,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:54897 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:11:51,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 06:11:51,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 06:11:51,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.163s +2025-10-02 06:11:51,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:11:51,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:51,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:54898 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53954 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:11:52,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 06:11:52,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 06:11:52,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.171s +2025-10-02 06:11:52,304 - 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 06:11:52,305 - 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 06:11:52,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:52,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 06:11:52,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 06:11:52,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.154s +2025-10-02 06:11:52,609 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:11:52,609 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:52,610 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8879 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53970 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:11:53,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 06:11:53,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 06:11:53,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 06:11:53,877 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:11:53,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 06:11:53,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8880 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34092 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34102 - "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 06:11:54,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 06:11:54,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 06:11:54,055 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:11:54,172 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:11:54,173 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:54,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53564 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34110 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51006 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34126 - "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 06:11:56,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 06:11:56,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 06:11:56,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.166s +2025-10-02 06:11:56,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:11:56,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:56,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34140 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8884 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11: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 06:11: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 06:11:57,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.158s +2025-10-02 06:11:58,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:11:58,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:58,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8885 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34156 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34172 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:54910 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:11:59,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 06:11:59,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 06:11:59,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.149s +2025-10-02 06:11:59,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:11:59,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:11:59,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:54911 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34178 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34182 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55812 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:00,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 06:12:00,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 06:12:00,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.159s +2025-10-02 06:12:00,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:12:00,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:00,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51011 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34198 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:12:01,144 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:12:01,145 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:12:01,210 - app.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 06:12:01,459 - 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 06:12:01,459 - 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 06:12:01,459 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53606 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34204 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:02,326 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:02,347 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.583 +2025-10-02 06:12:02,429 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=172.583 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:12:02,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.085s +2025-10-02 06:12:02,432 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:63493 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:34210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34218 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:04,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 06:12:04,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 06:12:04,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.158s +2025-10-02 06:12:04,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 06:12:04,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 06:12:04,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:50172 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50038 - "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 06:12:05,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 06:12:05,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 06:12: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.165s +2025-10-02 06:12:05,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 06:12:05,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 06:12:05,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:05,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 06:12:05,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 06:12:05,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.158s +2025-10-02 06:12:05,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:12:05,735 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:05,735 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:05,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 06:12:05,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 06:12: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.160s +2025-10-02 06:12:06,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:12:06,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:06,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50173 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50054 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50070 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:50072 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:06,550 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:06,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:06,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.140s +2025-10-02 06:12:06,691 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:12:06,691 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:06,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50074 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:08,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 06:12:08,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 06:12:08,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.140s +2025-10-02 06:12:08,233 - 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 06:12:08,233 - 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 06:12:08,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13622 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50088 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:08,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 06:12:08,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 06:12:08,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.162s +2025-10-02 06:12:08,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:12:08,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:08,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:09,178 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:09,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=113.223 +2025-10-02 06:12:09,282 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.223 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:12:09,282 - 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 06:12:09,284 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:63500 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:50090 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50092 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:54916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50106 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:10,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 06:12:10,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 06:12:10,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.148s +2025-10-02 06:12:10,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 06:12:10,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 06:12:10,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:54917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:10,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 06:12:10,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 06:12:10,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.150s +2025-10-02 06:12:11,003 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:12:11,003 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:11,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50108 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50124 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50130 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:54074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:13,473 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:13,493 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=182.947 +2025-10-02 06:12:13,585 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=182.947 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:12:13,586 - 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 06:12:13,587 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 61.255.207.212:63505 - "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 06:12:13,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:12:13,755 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:12:13,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.153s +2025-10-02 06:12:13,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:12:13,908 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:13,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58598 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58602 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58608 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8905 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58618 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:16,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 06:12:16,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 06:12:17,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.161s +2025-10-02 06:12:17,130 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:12:17,130 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:17,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8906 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58626 - "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 06:12:17,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 06:12:17,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 06:12:17,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.177s +2025-10-02 06:12:17,617 - 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 06:12:17,617 - 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 06:12:17,618 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13636 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:18,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 06:12:18,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 06:12:18,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.213s +2025-10-02 06:12:18,508 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.213s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.213s (avg: 0.213s/image) +2025-10-02 06:12:18,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.213s (avg: 0.213s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:18,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58640 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58644 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58646 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:12:19,685 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:12:19,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:12:19,740 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.284s +2025-10-02 06:12:19,970 - 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 06:12:19,971 - 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 06:12:19,971 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:55833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58662 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58668 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58678 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51032 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:24,156 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:24,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=150.152 +2025-10-02 06:12:24,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.152 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:12:24,267 - 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 06:12:24,269 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 175.119.234.181:13481 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:35864 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35878 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:24,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 06:12: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 06:12:24,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.180s +2025-10-02 06:12:24,745 - 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 06:12:24,745 - 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 06:12:24,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51033 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:54921 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:24,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 06:12:24,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 06:12:24,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.162s +2025-10-02 06:12:25,063 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:12:25,063 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:25,063 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:25,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 06:12:25,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 06:12:25,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.143s +2025-10-02 06:12:25,413 - 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 06:12:25,414 - 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 06:12:25,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:54922 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35892 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13646 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:26,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 06:12:26,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 06:12:26,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.140s +2025-10-02 06:12:26,411 - 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 06:12:26,412 - 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 06:12:26,412 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35894 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62352 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63516 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35900 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35902 - "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 06:12:27,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 06:12:27,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 06:12:27,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.181s +2025-10-02 06:12:28,106 - 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 06:12:28,106 - 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 06:12:28,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63517 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:28,214 - 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 06:12:28,244 - 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=98.525 +2025-10-02 06:12:28,352 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.525 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.107s +2025-10-02 06:12:28,352 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.107s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.110s +2025-10-02 06:12:28,354 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.110s +INFO: 61.255.207.212:62353 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:35912 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35916 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:12:30,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 06:12:30,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 06:12:30,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.161s +2025-10-02 06:12:30,223 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:12:30,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:30,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35928 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51037 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:31,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 06:12:31,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 06:12:31,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.182s +2025-10-02 06:12:31,703 - 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 06:12:31,703 - 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 06:12:31,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51038 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35930 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62357 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:32,488 - 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 06:12:32,525 - 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.851 +2025-10-02 06:12:32,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=55.851 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.093s +2025-10-02 06:12:32,619 - 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 06:12:32,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 61.255.207.212:62358 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:35932 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35710 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35722 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35724 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35734 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35736 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35752 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:35762 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62364 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:37,242 - 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 06:12:37,268 - 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=206.728 +2025-10-02 06:12:37,363 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=206.728 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 06:12:37,364 - 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 06:12:37,365 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 61.255.207.212:62365 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:51042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35768 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:37,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 06:12:37,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 06:12:37,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.172s +2025-10-02 06:12:38,065 - 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 06:12:38,065 - 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 06:12:38,065 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35784 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35798 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35810 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:54933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:40,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 06:12:40,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 06:12:40,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.149s +2025-10-02 06:12:40,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:12:40,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:40,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:54934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35814 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35826 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35842 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35856 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42316 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42326 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55864 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:45,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 06:12:45,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 06:12:45,655 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:12:45,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:12:45,782 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:45,782 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55865 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42334 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42350 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42362 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42376 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42382 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42386 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:54939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42390 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:50,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 06:12:50,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 06:12:50,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.142s +2025-10-02 06:12:50,562 - 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 06:12:50,562 - 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 06:12:50,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:54940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42396 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42412 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42416 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42422 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32984 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:32994 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33008 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33020 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:12:56,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 06:12:56,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 06:12:56,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.157s +2025-10-02 06:12:56,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 06:12:56,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:12:56,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33028 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33030 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33032 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:58,336 - 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 06:12:58,359 - 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.058 +2025-10-02 06:12:58,454 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=210.058 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 06:12:58,454 - 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 06:12:58,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 220.77.167.192:52576 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.197.218.214:55120 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:12:58,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:12:58,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.296 +2025-10-02 06:12:59,070 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.296 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:12:59,070 - 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 06:12:59,072 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 211.197.218.214:55123 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33036 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33040 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13515 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:00,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 06:13:00,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 06:13:00,696 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:13:00,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:13:00,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:00,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13516 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33042 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33056 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33070 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33078 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52344 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52348 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52356 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52376 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52380 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:52394 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:57947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:13:08,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 06:13:08,020 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:13:08,072 - app.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 06:13:08,310 - 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.144s/image) +2025-10-02 06:13:08,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:13:08,310 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:57948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52398 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52414 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52426 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52440 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52584 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:11,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 06:13:11,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 06:13:12,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 06:13:12,125 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:12,125 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:12,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52585 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52454 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:13:13,123 - 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 06:13:13,142 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=74.501 +2025-10-02 06:13:13,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.501 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:13:13,231 - 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 06:13:13,233 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 175.119.234.181:8915 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52470 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52486 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51846 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51860 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51864 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:50181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:17,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 06:13:17,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 06:13:18,016 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:13:18,145 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:13:18,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 06:13:18,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51878 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51894 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51902 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51906 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62401 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51918 - "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 06:13:21,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:21,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 06:13:21,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.167s +2025-10-02 06:13:21,721 - 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 06:13:21,721 - 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 06:13:21,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62402 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:22,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 06:13:22,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 06:13:22,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.155s +2025-10-02 06:13:22,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:13:22,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:22,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51932 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46078 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46080 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:26,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 06:13:26,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 06:13:26,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.180s +2025-10-02 06:13:26,983 - 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 06:13:26,983 - 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 06:13:26,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46086 - "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 06:13: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 06:13:27,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 06:13:27,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.162s +2025-10-02 06:13:27,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 06:13:27,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 06:13:27,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46108 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:29,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 06:13:29,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 06:13:29,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.141s +2025-10-02 06:13:29,467 - 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 06:13:29,467 - 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 06:13:29,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8930 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:30,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 06:13:30,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 06:13:30,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.152s +2025-10-02 06:13:30,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:30,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:30,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46122 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46138 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46152 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46168 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13: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 06:13: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 06:13:32,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.151s +2025-10-02 06:13:32,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:13:32,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:32,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:33,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 06:13:33,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 06:13:33,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.156s +2025-10-02 06:13:33,310 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:13:33,310 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:33,310 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63561 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46170 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:33,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 06:13:33,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 06:13:33,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.148s +2025-10-02 06:13:33,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:13:33,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:33,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56133 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46470 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46476 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46494 - "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 06:13:36,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 06:13:36,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 06:13:36,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.149s +2025-10-02 06:13:36,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 06:13:36,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 06:13:36,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:37,172 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:37,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 06:13:37,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.152s +2025-10-02 06:13:37,325 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:37,325 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:37,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46498 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46514 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:46522 - "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 06:13:37,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 06:13:37,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 06:13:37,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.169s +2025-10-02 06:13:37,998 - 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 06:13:37,998 - 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 06:13:37,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46532 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46538 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56299 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:39,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 06:13:39,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 06:13:39,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.163s +2025-10-02 06:13:40,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:13:40,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:40,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46548 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46552 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:13:41,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 06:13:41,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=18.916 +2025-10-02 06:13:41,795 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=18.916 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 06:13:41,795 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:13:41,797 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 220.77.167.192:53619 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:46564 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:42,885 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:13:42,886 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:13:42,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.142s +2025-10-02 06:13:43,028 - 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 06:13:43,028 - 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 06:13:43,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32942 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32946 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32956 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:44,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 06:13:44,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 06:13: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.152s +2025-10-02 06:13:44,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 06:13:44,882 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:44,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214: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 06:13:45,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 06:13:45,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 06:13:45,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.178s +2025-10-02 06:13:45,536 - 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 06:13:45,536 - 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 06:13:45,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63570 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32966 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 06:13: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 06:13:46,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 06:13: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.146s +2025-10-02 06:13:46,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:13:46,660 - 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 06:13:46,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32982 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32992 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32994 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:47,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 06:13:47,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 06:13:47,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.167s +2025-10-02 06:13:48,035 - 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 06:13:48,035 - 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 06:13:48,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:48,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 06:13:48,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 06:13:48,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.134s +2025-10-02 06:13:48,453 - 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 06:13:48,453 - 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 06:13:48,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51072 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33000 - "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 06:13:48,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 06:13:48,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 06:13:48,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.152s +2025-10-02 06:13:48,871 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:13:48,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:48,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33012 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33018 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33028 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:56627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:51,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 06:13:51,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 06:13:51,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.167s +2025-10-02 06:13:51,401 - 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 06:13:51,401 - 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 06:13:51,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33034 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33046 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49226 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49230 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53628 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:55,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 06:13:55,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 06:13:55,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.174s +2025-10-02 06:13:55,443 - 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 06:13:55,444 - 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 06:13:55,444 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13750 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:13:55,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 06:13:55,603 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:13:55,650 - app.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 06:13:55,870 - 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 06:13:55,870 - 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 06:13:55,871 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:51077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53629 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49242 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49252 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:13:56,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 06:13:56,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 06:13:56,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.151s +2025-10-02 06:13:56,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:13:56,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:13:56,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49254 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49258 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:13:58,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 06:13:58,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 06:13: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.167s +2025-10-02 06:13:58,937 - 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 06:13:58,937 - 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 06:13:58,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49270 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49278 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13755 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49294 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14: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 06:14: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 06:14:00,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.158s +2025-10-02 06:14:00,272 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:14:00,272 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:00,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13756 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49300 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49316 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:02,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 06:14:02,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 06:14:02,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 06:14:02,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:14:02,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:02,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49328 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:03,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 06:14:03,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 06:14: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.163s +2025-10-02 06:14:03,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:14:03,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:03,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41426 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:05,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 06:14:05,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 06:14:05,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 06:14:05,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:14:05,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:05,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63584 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55922 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41444 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:14:05,476 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:14:05,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=108.975 +2025-10-02 06:14:05,583 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.975 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:14:05,584 - 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 06:14:05,586 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 39.112.59.88:51084 - "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 06:14:05,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 06:14:05,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 06:14:05,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.137s +2025-10-02 06:14:05,963 - 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 06:14:05,963 - 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 06:14:05,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55923 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:06,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 06:14:06,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 06:14:06,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.143s +2025-10-02 06:14:06,719 - 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 06:14:06,720 - 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 06:14:06,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:06,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 06:14:06,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 06:14:06,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.141s +2025-10-02 06:14:07,001 - 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 06:14:07,001 - 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 06:14:07,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41454 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14: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 06:14: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 06:14:07,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.186s +2025-10-02 06:14:07,987 - 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 06:14:07,987 - 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 06:14:07,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41468 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41478 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:56930 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:14:08,939 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(795, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:14:08,957 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(795, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=57.954 +2025-10-02 06:14:09,035 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.954 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:14:09,035 - 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 06:14:09,036 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 175.119.234.181:9584 - "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 06:14:09,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 06:14:09,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 06:14:09,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.162s +2025-10-02 06:14:09,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:14:09,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:09,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41488 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41496 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:41508 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:11,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 06:14:11,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 06:14:11,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.167s +2025-10-02 06:14:11,371 - 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 06:14:11,371 - 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 06:14:11,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8961 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41522 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41524 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13768 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:12,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 06:14:12,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 06:14:12,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.148s +2025-10-02 06:14:12,916 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:14:12,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:12,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13769 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:13,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 06:14:13,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 06:14:13,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.140s +2025-10-02 06:14:13,249 - 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 06:14:13,249 - 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 06:14:13,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41552 - "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 06:14:13,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 06:14:13,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 06:14:13,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.168s +2025-10-02 06:14:13,747 - 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 06:14:13,748 - 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 06:14:13,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63589 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53998 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54004 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:15,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 06:14:15,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 06:14:15,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.147s +2025-10-02 06:14:15,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:14:15,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:15,278 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:57117 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54012 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54018 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54030 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52608 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54044 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54054 - "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 06:14:19,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 06:14:19,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 06:14:19,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.202s +2025-10-02 06:14:19,969 - 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 06:14:19,969 - 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 06:14:19,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52609 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54064 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54072 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 4 jobs. +2025-10-02 06:14:21,339 - app.core.batch_manager - INFO - Creating a new batch with 4 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 4). VRAM: 0.0 GB +2025-10-02 06:14:21,340 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 4). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 4개 이미지 인페인팅 수행 +2025-10-02 06:14:21,436 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 4개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 4). VRAM: 0.0 GB | Duration: 0.551s +2025-10-02 06:14:21,891 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 4). VRAM: 0.0 GB | Duration: 0.551s +INFO:app.core.worker_manager:'simple-lama' batch of 4 processed in 0.551s (avg: 0.138s/image) +2025-10-02 06:14:21,892 - app.core.worker_manager - INFO - 'simple-lama' batch of 4 processed in 0.551s (avg: 0.138s/image) +INFO:app.core.batch_manager:Successfully processed batch of 4 jobs. +2025-10-02 06:14:21,892 - app.core.batch_manager - INFO - Successfully processed batch of 4 jobs. +INFO: 211.226.69.49:61430 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:57138 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:55936 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:23,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 06:14:23,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 06:14:23,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.162s +2025-10-02 06:14:23,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:14:23,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:23,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55937 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35630 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35644 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35660 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:14:25,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 06:14:25,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 06:14:26,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.164s +2025-10-02 06:14:26,127 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:14:26,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:26,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:26,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 06:14:26,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 06:14:26,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.146s +2025-10-02 06:14:26,539 - 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 06:14:26,539 - 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 06:14:26,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35664 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:57958 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:27,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 06:14:27,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 06:14:27,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.157s +2025-10-02 06:14:27,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:14:27,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:27,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57959 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35676 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:28,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 06:14:28,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 06:14:28,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.154s +2025-10-02 06:14:28,191 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:14:28,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:28,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35680 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35690 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53641 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:30,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 06:14:30,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 06:14:30,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.159s +2025-10-02 06:14:30,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:14:30,772 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:30,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53642 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35704 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35714 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:30,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 06:14:30,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 06:14:31,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.181s +2025-10-02 06:14:31,126 - 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 06:14:31,126 - 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 06:14:31,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:31,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 06:14:31,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 06:14:31,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.191s +2025-10-02 06:14:31,629 - 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 06:14:31,629 - 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 06:14:31,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:31,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 06:14:31,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 06:14:31,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.150s +2025-10-02 06:14:31,945 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:14:31,945 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:31,946 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35724 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:61809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:14:32,785 - 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 06:14:32,807 - 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=95.946 +2025-10-02 06:14:32,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.946 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 06:14:32,882 - 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 06:14:32,882 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 175.119.234.181:61810 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:35734 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35458 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35466 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8981 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35474 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:61455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35482 - "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 06:14:36,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 06:14:36,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 06:14:36,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.172s +2025-10-02 06:14:36,574 - 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 06:14:36,574 - 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 06:14:36,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8982 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35488 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35496 - "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 06:14:37,552 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:14:37,553 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:14:37,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.159s +2025-10-02 06:14:37,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:14:37,712 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:37,712 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61457 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:14:37,876 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:14:37,877 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:14:37,928 - app.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 06:14:38,155 - 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 06:14:38,155 - 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 06:14:38,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:57645 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35506 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:38,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 06:14:38,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 06:14:38,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.145s +2025-10-02 06:14:38,487 - 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 06:14:38,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 06:14:38,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35520 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35524 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35526 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:35534 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35540 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:41,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 06:14:41,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 06:14:41,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.172s +2025-10-02 06:14:41,775 - 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 06:14:41,775 - 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 06:14:41,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35548 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14: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 06:14: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 06:14:42,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.208s +2025-10-02 06:14:42,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.208s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image) +2025-10-02 06:14:42,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:42,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52626 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:42,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 06:14:42,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 06:14:42,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.138s +2025-10-02 06:14:42,743 - 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 06:14:42,744 - 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 06:14:42,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:14:43,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 06:14:43,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 06:14:43,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.141s +2025-10-02 06:14:43,161 - 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 06:14:43,161 - 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 06:14:43,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35552 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35568 - "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 06:14:43,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 06:14:43,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 06:14:43,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.169s +2025-10-02 06:14:43,937 - 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 06:14:43,938 - 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 06:14:43,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52356 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:61819 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52360 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:14:45,618 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:14:45,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:14:45,677 - app.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 06:14:45,916 - 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 06:14:45,917 - 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 06:14:45,917 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:61821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52372 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52382 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52384 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:14:47,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 06:14:47,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 06:14:47,433 - app.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 06:14:47,650 - 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 06:14:47,650 - 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 06:14:47,650 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52398 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57790 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06: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 06: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 06:14:49,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.149s +2025-10-02 06:14:49,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:14:49,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:49,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52408 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52420 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52426 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:61467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52436 - "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 06:14:51,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 06:14:51,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 06:14:51,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.153s +2025-10-02 06:14:51,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 06:14:51,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 06:14:51,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9002 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52452 - "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 06:14:52,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 06:14:52,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 06:14:52,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.163s +2025-10-02 06:14:52,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:14:52,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 06:14:52,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9003 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14: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 06:14: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 06:14:52,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.150s +2025-10-02 06:14:53,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:14:53,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:53,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:53,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 06:14:53,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 06:14:53,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.152s +2025-10-02 06:14:53,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 06:14:53,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 06:14:53,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52464 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:14:53,870 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:14:53,871 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:14:53,939 - app.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 06:14:54,190 - 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 06:14:54,191 - 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 06:14:54,191 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53656 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9646 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36260 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:61827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36268 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36282 - "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 06:14:55,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 06:14:55,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 06:14:55,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.143s +2025-10-02 06:14:55,953 - 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 06:14:55,954 - 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 06:14:55,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:61828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49768 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:57798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:56,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 06:14:56,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 06:14:56,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.148s +2025-10-02 06:14:56,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 06:14:56,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 06:14:56,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36296 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 06:14:56,524 - 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 06:14:56,525 - 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 06:14:56,599 - 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.404s +2025-10-02 06:14:56,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.404s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.404s (avg: 0.135s/image) +2025-10-02 06:14:56,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.404s (avg: 0.135s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 06:14:56,930 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 175.119.234.181:9008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49769 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:57799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36306 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36310 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36324 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:14:59,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 06:14: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 06:14:59,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.159s +2025-10-02 06:14:59,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:14:59,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:14:59,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36332 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36342 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36344 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36360 - "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 06:15:01,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 06:15:01,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 06:15: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.150s +2025-10-02 06:15:01,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:15:01,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:01,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:15:02,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 06:15:02,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 06:15:02,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.144s +2025-10-02 06:15:02,540 - 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 06:15:02,540 - 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 06:15:02,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53661 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36366 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:03,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 06:15:03,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 06:15:03,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.173s +2025-10-02 06:15:03,317 - 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 06:15:03,318 - 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 06:15:03,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48470 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:15:04,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 06:15:04,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 06:15:04,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.143s +2025-10-02 06:15:04,572 - 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 06:15:04,572 - 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 06:15:04,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:61497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:15:04,601 - 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 06:15:04,628 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=45.548 +2025-10-02 06:15:04,711 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.548 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:15:04,712 - 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 06:15:04,712 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 61.255.207.212:55956 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:48480 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57922 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:05,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 06:15:05,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 06:15:05,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.137s +2025-10-02 06:15:05,180 - 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 06:15:05,180 - 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 06:15:05,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:05,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 06:15:05,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 06:15:05,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.149s +2025-10-02 06:15:05,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:05,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:05,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:61833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:05,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 06:15:05,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 06:15:05,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.151s +2025-10-02 06:15:06,089 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:15:06,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:06,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:61834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:06,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 06:15:06,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 06:15:06,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.148s +2025-10-02 06:15:06,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:15:06,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:06,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48504 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:07,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 06:15:07,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 06:15:07,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.156s +2025-10-02 06:15:07,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:15:07,401 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:07,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51137 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48506 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48512 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:15:08,144 - 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 06:15:08,173 - 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.869 +2025-10-02 06:15:08,250 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.869 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 06:15:08,250 - 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 06:15:08,251 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:55961 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236: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 06:15:08,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 06:15:08,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 06:15:08,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.160s +2025-10-02 06:15:08,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 06:15:08,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:08,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48524 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13837 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48528 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48532 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48548 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:48550 - "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 06:15:11,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 06:15:11,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 06:15:11,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.165s +2025-10-02 06:15:11,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:15:11,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:11,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13838 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52640 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:58074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:15:11,834 - 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 06:15:11,854 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=66.978 +2025-10-02 06:15:11,931 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.978 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 06:15:11,932 - 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 06:15:11,932 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:55968 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:48564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:12,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 06:15:12,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 06:15:12,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.157s +2025-10-02 06:15:12,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 06:15:12,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 06:15:12,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9040 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:15:12,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 06:15:12,562 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:12,629 - app.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 06:15:12,857 - 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 06:15:12,858 - 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 06:15:12,858 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52641 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:58081 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48570 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44058 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44078 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53665 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9045 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:15,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 06:15:15,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 06:15:15,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.161s +2025-10-02 06:15:15,646 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:15:15,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:15,647 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53666 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:15,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 06:15:15,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 06:15:15,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.132s +2025-10-02 06:15:15,920 - 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 06:15:15,920 - 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 06:15:15,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9046 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44094 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49782 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:16,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 06:15:16,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 06:15:16,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 06:15:16,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:15:16,749 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:16,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49783 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44098 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44112 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:58210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44126 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:18,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 06:15:18,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 06:15:18,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.149s +2025-10-02 06:15:18,423 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:18,423 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:18,423 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44128 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44142 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44146 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9050 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:20,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 06:15:20,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 06:15:21,035 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:15:21,163 - 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 06:15:21,164 - 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 06:15:21,164 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9051 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44160 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:21,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 06:15:21,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 06:15:21,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.156s +2025-10-02 06:15:21,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:15:21,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:21,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:58293 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44168 - "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 06:15:22,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 06:15:22,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 06:15: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.143s +2025-10-02 06:15:23,008 - 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 06:15:23,008 - 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 06:15:23,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58294 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52645 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:23,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 06:15:23,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 06:15:23,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.196s +2025-10-02 06:15:23,657 - 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 06:15:23,657 - 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 06:15:23,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52646 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35514 - "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 06:15:24,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 06:15:24,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 06:15:24,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 06:15:24,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:24,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 06:15:24,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35522 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49792 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:25,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 06:15:25,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 06:15:25,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.149s +2025-10-02 06:15:25,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:25,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:25,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:25,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 06:15:25,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 06:15:25,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.143s +2025-10-02 06:15:25,908 - 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 06:15:25,908 - 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 06:15:25,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49793 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35528 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35540 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35544 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35558 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:58462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35564 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9063 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:29,418 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:15:29,419 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:29,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.155s +2025-10-02 06:15:29,575 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:15:29,575 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:29,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9064 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:29,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 06:15:29,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 06:15:29,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.167s +2025-10-02 06:15:29,992 - 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 06:15:29,992 - 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 06:15:29,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35570 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35584 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35592 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35598 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35604 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35616 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236: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 06:15:33,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 06:15:33,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 06:15:33,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.165s +2025-10-02 06:15:34,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:15:34,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:34,059 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37082 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:34,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 06:15:34,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 06:15:34,626 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:15:34,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:15:34,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:34,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37090 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:36,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 06:15:36,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 06:15:36,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.163s +2025-10-02 06:15:36,273 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:15:36,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:36,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37106 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37110 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:58736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 06:15:36,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 06:15:36,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 06:15:36,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.179s +2025-10-02 06:15:36,941 - 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 06:15:36,941 - 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 06:15:36,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:15:37,289 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:15:37,289 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:37,345 - app.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 06:15:37,562 - 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 06:15:37,562 - 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 06:15:37,562 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:58741 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61535 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37116 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37120 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:38,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 06:15:38,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:15:38,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.145s +2025-10-02 06:15:39,074 - 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 06:15:39,074 - 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 06:15:39,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9075 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37144 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:61849 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37154 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:15:40,699 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:15:40,699 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:40,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.284s +2025-10-02 06:15:40,984 - 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 06:15:40,984 - 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 06:15:40,985 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:51165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:61850 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37160 - "GET /api/v1/health 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 06:15:41,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 06:15:41,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 06:15:41,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.149s +2025-10-02 06:15:41,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:15:41,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:41,476 - 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: 127.0.0.1:37164 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:15:41,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 06:15:41,737 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.803 +2025-10-02 06:15:41,819 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.803 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:15:41,820 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:15:41,822 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 175.119.234.181:13846 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:49805 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:42,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 06:15:42,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 06:15: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.140s +2025-10-02 06:15:42,229 - 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 06:15:42,229 - 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 06:15:42,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37178 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37184 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:57966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:43,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 06:15:43,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 06:15:43,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.166s +2025-10-02 06:15:43,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:15:43,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:43,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57967 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:43,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 06:15:43,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 06:15: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.134s +2025-10-02 06:15:43,847 - 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 06:15:43,847 - 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 06:15:43,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44488 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15: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 06:15: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 06:15:45,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.145s +2025-10-02 06:15:45,318 - 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 06:15:45,318 - 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 06:15:45,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52657 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:61854 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:15:45,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 06:15:45,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 06:15:45,617 - app.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 06:15:45,853 - 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 06:15:45,853 - 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 06:15:45,853 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:51170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:61855 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44502 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44506 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13852 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:47,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 06:15: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 06:15:47,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.154s +2025-10-02 06:15:47,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:15:47,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 06:15:47,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13853 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44516 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:48,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 06:15:48,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 06:15:48,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.142s +2025-10-02 06:15:48,329 - 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 06:15:48,330 - 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 06:15:48,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9084 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:55983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15: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 06:15: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 06:15:48,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.147s +2025-10-02 06:15:48,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 06:15:48,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 06:15:48,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9085 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:48,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 06:15:48,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 06:15:48,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.161s +2025-10-02 06:15:49,082 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:15:49,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 06:15:49,082 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44524 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44538 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59081 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:15:49,897 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:15:49,898 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:15:49,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.294s +2025-10-02 06:15:50,192 - 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 06:15:50,192 - 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 06:15:50,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:61565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:59082 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44554 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51174 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:50,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 06:15:50,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 06:15:50,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.159s +2025-10-02 06:15:50,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:15:50,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:50,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51175 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44570 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44572 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44582 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:53,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 06:15:53,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 06:15:53,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:15:53,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:15:53,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:53,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62481 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44586 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34326 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9089 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:54,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 06:15:54,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 06:15:55,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.144s +2025-10-02 06:15:55,131 - 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 06:15:55,131 - 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 06:15:55,132 - 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: 127.0.0.1:34334 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34346 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:55993 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:55,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 06:15:55,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 06:15:55,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.147s +2025-10-02 06:15:55,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:15:55,791 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:55,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:55994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:56,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 06:15:56,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 06:15:56,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.156s +2025-10-02 06:15:56,362 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:15:56,362 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:56,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34356 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:15:58,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 06:15:58,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 06:15:58,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.163s +2025-10-02 06:15:58,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:15:58,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:58,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34370 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34372 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:58,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 06:15:58,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 06:15:58,766 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:15:58,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:15:58,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:15:58,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9681 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34378 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:15:59,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 06:15:59,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 06:15:59,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.184s +2025-10-02 06:15:59,913 - 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 06:15:59,914 - 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 06:15:59,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34380 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:16:00,428 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:16:00,429 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:16:00,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.295s +2025-10-02 06:16:00,724 - 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 06:16:00,725 - 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 06:16:00,725 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:56001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9096 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:01,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 06:16:01,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 06:16:01,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.150s +2025-10-02 06:16:01,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:16:01,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:01,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34384 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34394 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46652 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46662 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46674 - "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 06:16: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 06:16:05,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 06:16: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.158s +2025-10-02 06:16:05,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:05,183 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:05,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59534 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46688 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:06,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 06:16: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 06:16:06,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 06:16:06,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 06:16:06,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:06,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46704 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46708 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46712 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:61876 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46726 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:08,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 06:16:08,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 06:16:08,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.146s +2025-10-02 06:16:09,076 - 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 06:16:09,077 - 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 06:16:09,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:61877 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:09,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 06:16:09,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 06:16:09,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.179s +2025-10-02 06:16:09,703 - 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 06:16:09,703 - 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 06:16:09,703 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52671 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46732 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46746 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46752 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:11,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 06:16:11,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 06:16:11,542 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:16:11,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:11,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:11,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46764 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:46780 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:61882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56984 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57000 - "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 06:16:13,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 06:16:13,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 06:16:13,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.151s +2025-10-02 06:16:14,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:16:14,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:14,040 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:14,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 06:16:14,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 06:16:14,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.142s +2025-10-02 06:16:14,325 - 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 06:16:14,325 - 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 06:16:14,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:61883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57014 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57018 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52675 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:59887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:16,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 06:16:16,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 06:16:16,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.164s +2025-10-02 06:16:16,735 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:16:16,736 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:16,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52676 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57042 - "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 06:16: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 06:16:16,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 06:16:16,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.133s +2025-10-02 06:16:17,013 - 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 06:16:17,014 - 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 06:16:17,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57044 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:61887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57050 - "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 06:16:19,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 06:16:19,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 06:16:19,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.147s +2025-10-02 06:16:19,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:16:19,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:19,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:61888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57060 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57074 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57076 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49823 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:22,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 06:16:22,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 06:16:22,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.169s +2025-10-02 06:16:22,182 - 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 06:16:22,182 - 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 06:16:22,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49824 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57092 - "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 06:16:22,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 06:16:22,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 06:16:22,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.158s +2025-10-02 06:16:23,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:23,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:23,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:60086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:23,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 06:16:23,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 06:16:23,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.160s +2025-10-02 06:16:23,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:16:23,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:23,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53596 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53612 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13884 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53620 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:25,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 06:16:25,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 06:16:25,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.180s +2025-10-02 06:16:25,443 - 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 06:16:25,443 - 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 06:16:25,443 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13885 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53626 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:16:26,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 06:16:26,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 06:16:26,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.163s +2025-10-02 06:16:26,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:16:26,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:26,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53630 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53646 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53654 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53664 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53674 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53690 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16: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 06:16: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 06:16:30,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.151s +2025-10-02 06:16:30,667 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:16:30,667 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:30,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53696 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53698 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53710 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53722 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51188 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:60395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:34,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 06:16:34,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 06:16:34,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.170s +2025-10-02 06:16:34,474 - 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 06:16:34,475 - 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 06:16:34,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:34,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 06:16:34,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 06:16:34,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.156s +2025-10-02 06:16:34,861 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:16:34,861 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:34,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51196 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236: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 06:16:35,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 06:16:35,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 06:16:35,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.154s +2025-10-02 06:16:35,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:16:35,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:35,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51206 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51220 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51234 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9115 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51242 - "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 06:16:38,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 06:16:38,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 06:16:38,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.158s +2025-10-02 06:16:38,343 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:38,343 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:38,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9116 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13903 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51250 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51262 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:16:39,166 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:16:39,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:16:39,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.279s +2025-10-02 06:16:39,446 - 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.140s/image) +2025-10-02 06:16:39,446 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:16:39,446 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13904 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51276 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51280 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51292 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51306 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:51314 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51324 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9120 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35410 - "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 06:16: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 06:16: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 06:16:44,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.157s +2025-10-02 06:16:44,316 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:16:44,316 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:44,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9121 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:44,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 06:16:44,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 06:16:44,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.136s +2025-10-02 06:16:44,582 - 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 06:16:44,583 - 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 06:16:44,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35422 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35430 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:16:45,280 - 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 06:16:45,302 - 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=112.359 +2025-10-02 06:16:45,391 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.359 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:16:45,391 - 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 06:16:45,393 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 211.226.69.49:61637 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:16:45,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 06:16:45,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 06:16:45,845 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:16:45,961 - 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 06:16:45,962 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:45,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35434 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:50403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35462 - "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 06:16:48,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 06:16:48,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 06:16:48,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 06:16:48,509 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:16:48,510 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:48,510 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13927 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:49,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 06:16:49,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 06:16:49,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.159s +2025-10-02 06:16:49,243 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:16:49,243 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:49,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:49,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 06:16:49,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 06:16:49,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.149s +2025-10-02 06:16:49,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 06:16:49,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 06:16:49,664 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13928 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35494 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35502 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35514 - "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 06:16:51,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 06:16:51,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 06:16:51,433 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.167s +2025-10-02 06:16:51,563 - 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 06:16:51,564 - 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 06:16:51,564 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:16:52,112 - 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 06:16:52,141 - 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.383 +2025-10-02 06:16:52,231 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.383 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:16:52,231 - 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 06:16:52,233 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 211.226.69.49:61648 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:35526 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:53,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 06:16:53,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 06:16:53,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.155s +2025-10-02 06:16:53,385 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:16:53,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:53,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9131 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35534 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49514 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49518 - "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 06:16:54,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 06:16:54,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 06:16:54,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.158s +2025-10-02 06:16:54,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:16:54,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:54,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49522 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:55,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 06:16:55,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 06:16:55,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.170s +2025-10-02 06:16:55,767 - 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 06:16:55,767 - 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 06:16:55,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49846 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49534 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49550 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49564 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16:58,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 06:16:58,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 06:16:58,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.153s +2025-10-02 06:16:58,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:16:58,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:58,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56073 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49566 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:16: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 06:16: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 06:16:58,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.153s +2025-10-02 06:16:58,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:16:58,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:16:58,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49572 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:57974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49588 - "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 06:17:00,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 06:17:00,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 06:17:00,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.165s +2025-10-02 06:17:00,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:17:00,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:00,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49594 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56048 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56058 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:05,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 06:17:05,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=26.196 +2025-10-02 06:17:05,765 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=26.196 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:17:05,766 - 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 06:17:05,768 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 220.77.167.192:53686 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56064 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56080 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56096 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56100 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56126 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56130 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56134 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46452 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46466 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:46474 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46488 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46494 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46506 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:17,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 06:17:17,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 06:17:17,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:17:17,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 06:17:17,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:17,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46516 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62531 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:18,721 - 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 06:17:18,756 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=82.529 +2025-10-02 06:17:18,852 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=82.529 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.095s +2025-10-02 06:17:18,852 - 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 06:17:18,854 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 61.255.207.212:62532 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:46520 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46532 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46548 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:19,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 06:17:19,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 06:17:20,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.191s +2025-10-02 06:17:20,149 - 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 06:17:20,149 - 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 06:17:20,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46554 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46568 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:22,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 06:17:22,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 06:17:22,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.159s +2025-10-02 06:17:23,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:17:23,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:23,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46576 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:23,374 - 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 06:17:23,399 - 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=100.163 +2025-10-02 06:17:23,494 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.163 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 06:17:23,494 - 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 06:17:23,496 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.097s +INFO: 61.255.207.212:62538 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:40242 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40258 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40264 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40276 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62544 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:27,107 - 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 06:17:27,127 - 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=89.468 +2025-10-02 06:17:27,219 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=89.468 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:17:27,219 - 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 06:17:27,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 61.255.207.212:62545 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:40280 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40290 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17: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 06:17:28,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 06:17:28,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.210s +2025-10-02 06:17:28,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-02 06:17:28,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:28,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40306 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:17:29,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 06:17:29,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 06:17:29,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.150s +2025-10-02 06:17:29,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:17:29,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:29,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40328 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40336 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13987 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:50427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:17:30,748 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:17:30,749 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:17:30,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.280s +2025-10-02 06:17:31,028 - 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 06:17:31,029 - 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 06:17:31,029 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13988 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:50428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40352 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:31,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 06:17:31,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 06:17:31,903 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:17:32,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:17:32,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:32,013 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40354 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56040 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56046 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:34,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 06:17:34,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 06:17:34,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.147s +2025-10-02 06:17:34,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:17:34,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 06:17:34,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61734 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:61651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17: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 06:17: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 06:17:35,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.155s +2025-10-02 06:17:35,630 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:17:35,630 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:35,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56062 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56074 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56076 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56086 - "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 06:17:38,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 06:17:38,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 06:17:38,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.151s +2025-10-02 06:17:39,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:17:39,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:39,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56088 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:61800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:40,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 06:17:40,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 06:17:40,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.157s +2025-10-02 06:17:40,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:17:40,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:40,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56110 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56122 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:42,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 06:17:42,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 06:17:42,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.145s +2025-10-02 06:17:42,189 - 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 06:17:42,189 - 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 06:17:42,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14013 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56136 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49883 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56144 - "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 06:17:43,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 06:17:43,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 06:17:43,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.172s +2025-10-02 06:17:43,335 - 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 06:17:43,335 - 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 06:17:43,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49884 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37460 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37468 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:14017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10609 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:44,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 06:17:44,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 06:17:44,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.141s +2025-10-02 06:17:44,528 - 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 06:17:44,528 - 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 06:17:44,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:44,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 06:17:44,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=113.077 +2025-10-02 06:17:44,660 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=113.077 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:17:44,661 - 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 06:17:44,663 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 175.119.234.181:10610 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:37478 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:45,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 06:17:45,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 06:17:45,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.139s +2025-10-02 06:17:45,819 - 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 06:17:45,820 - 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 06:17:45,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37498 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49888 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:47,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 06:17:47,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 06:17:47,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.167s +2025-10-02 06:17:47,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 06:17:47,450 - 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 06:17:47,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49889 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37512 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56097 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:48,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 06:17:48,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 06:17:48,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.151s +2025-10-02 06:17:48,341 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:17:48,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:48,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56098 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37520 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37528 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37532 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37534 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37540 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37552 - "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 06:17:52,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 06:17:52,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 06:17: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.151s +2025-10-02 06:17:52,408 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:17:52,409 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:52,409 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37554 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:53,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 06:17:53,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 06:17:53,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.163s +2025-10-02 06:17:53,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:17:53,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 06:17:53,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54638 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54652 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54658 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56104 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:55,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 06:17:55,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 06:17:55,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.153s +2025-10-02 06:17:55,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:17:55,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:55,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56105 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61761 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54664 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:17:56,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 06:17:56,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 06:17:56,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:17:56,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:17:56,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:17:56,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61762 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54668 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54674 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54684 - "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 06:17:58,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 06:17:58,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 06:17:58,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.191s +2025-10-02 06:17:58,514 - 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 06:17:58,514 - 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 06:17:58,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54694 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9147 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:17:59,794 - 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 06:17:59,824 - 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=47.385 +2025-10-02 06:17:59,925 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.385 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.100s +2025-10-02 06:17:59,925 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.100s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.102s +2025-10-02 06:17:59,926 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.102s +INFO: 175.119.234.181:9148 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:54702 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:00,211 - 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 06:18:00,232 - 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=68.353 +2025-10-02 06:18:00,320 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.353 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:18:00,321 - 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 06:18:00,321 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:63673 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:54714 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54722 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54724 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54734 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56416 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:04,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 06:18:04,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 06:18:04,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.168s +2025-10-02 06:18:04,413 - 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 06:18:04,413 - 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 06:18:04,414 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56426 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49908 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:05,116 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:05,132 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=65.777 +2025-10-02 06:18:05,218 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=65.777 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:18:05,219 - 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 06:18:05,220 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 39.112.59.88:51240 - "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 06:18:05,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 06:18:05,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 06:18:05,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.191s +2025-10-02 06:18:05,431 - 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 06:18:05,431 - 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 06:18:05,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49909 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56432 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56434 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56442 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52691 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:61812 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56462 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56466 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56472 - "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 06:18:10,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 06:18:10,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 06:18:11,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.178s +2025-10-02 06:18:11,144 - 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 06:18:11,145 - 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 06:18:11,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56476 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56488 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55066 - "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 06:18:14,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 06:18:14,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 06:18:14,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.166s +2025-10-02 06:18:14,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 06:18:14,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 06:18:14,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55074 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55076 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:14,852 - 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 06:18:14,881 - 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.237 +2025-10-02 06:18:14,968 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=158.237 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:18:14,968 - 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 06:18:14,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:63681 - "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 06:18:15,045 - 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 06:18:15,060 - 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=227.040 +2025-10-02 06:18:15,129 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=227.040 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.069s +2025-10-02 06:18:15,130 - 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 06:18:15,130 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +INFO: 220.77.167.192:52692 - "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 06:18:15,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 06:18:15,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 06:18:15,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:18:15,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:18:15,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:15,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55084 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53020 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55086 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55090 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53707 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:17,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 06:18:17,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 06:18:17,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.178s +2025-10-02 06:18:17,769 - 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 06:18:17,769 - 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 06:18:17,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55104 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:17,949 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:17,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=165.242 +2025-10-02 06:18:18,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=165.242 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:18:18,064 - 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 06:18:18,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 175.119.234.181:53021 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:55112 - "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 06:18:18,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 06:18:18,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 06:18:18,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.171s +2025-10-02 06:18:18,763 - 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 06:18:18,764 - 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 06:18:18,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62570 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:57982 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55122 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55128 - "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 06:18:20,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 06:18:20,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 06:18:20,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.208s +2025-10-02 06:18:20,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.208s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image) +2025-10-02 06:18:20,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.208s (avg: 0.208s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:20,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:62910 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55134 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:21,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 06:18:21,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 06:18:21,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 06:18:21,348 - 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 06:18:21,348 - 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 06:18:21,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:57983 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:21,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 06:18:21,410 - 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.396 +2025-10-02 06:18:21,490 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=80.396 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 06:18:21,490 - 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 06:18:21,492 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:63686 - "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 06:18:21,631 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:18:21,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 06:18:21,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.270s +2025-10-02 06:18:21,903 - 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 06:18:21,903 - 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 06:18:21,903 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:51245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53708 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56119 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:22,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 06:18:22,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 06:18:22,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.158s +2025-10-02 06:18:22,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:18:22,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:22,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56120 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55138 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34384 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34394 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34398 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12702 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:25,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 06:18:25,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 06:18: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.159s +2025-10-02 06:18:25,926 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:18:25,926 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:25,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12703 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34408 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34422 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34428 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34440 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34446 - "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 06:18:29,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 06:18:29,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 06:18:29,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.151s +2025-10-02 06:18:29,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:18:29,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:29,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12707 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49931 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:29,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 06:18:29,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 06:18:29,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 06:18:30,097 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:18:30,097 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:30,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12708 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:53025 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34458 - "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 06:18:30,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 06:18:30,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 06:18:30,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.176s +2025-10-02 06:18:30,431 - 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 06:18:30,431 - 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 06:18:30,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49932 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 06:18:30,606 - 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 06:18:30,607 - 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 06:18:30,680 - 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.385s +2025-10-02 06:18:30,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.385s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.385s (avg: 0.128s/image) +2025-10-02 06:18:30,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.385s (avg: 0.128s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 06:18:30,992 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 211.226.69.49:61827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:53026 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34472 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34482 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34506 - "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 06:18:33,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 06:18:33,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 06:18:33,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.171s +2025-10-02 06:18:33,629 - 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 06:18:33,630 - 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 06:18:33,630 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62594 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59324 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12712 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59328 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:35,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 06:18:35,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 06:18:35,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.159s +2025-10-02 06:18:35,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:18:35,808 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:35,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12713 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:35,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 06:18:35,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 06:18:35,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.145s +2025-10-02 06:18:36,090 - 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 06:18:36,090 - 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 06:18:36,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59332 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59344 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59356 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:37,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 06:18:37,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 06:18:37,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.155s +2025-10-02 06:18:37,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:18:37,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:37,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56131 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59358 - "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 06:18:38,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 06:18:38,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 06:18:38,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.160s +2025-10-02 06:18:38,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 06:18:38,755 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:38,755 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56132 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:39,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 06:18:39,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 06:18:39,052 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:18:39,175 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:18:39,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:39,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59368 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59378 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59384 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:53032 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59398 - "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 06:18:41,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 06:18:41,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 06:18:41,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.167s +2025-10-02 06:18:41,520 - 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 06:18:41,521 - 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 06:18:41,521 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:41,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 06:18:41,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 06:18:42,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.160s +2025-10-02 06:18:42,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:18:42,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 06:18:42,135 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53033 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59400 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59406 - "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 06:18:43,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 06:18:43,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 06:18:43,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.170s +2025-10-02 06:18:43,203 - 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 06:18:43,203 - 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 06:18:43,203 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59412 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59788 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:18:44,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:18:44,387 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.892 +2025-10-02 06:18:44,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=21.892 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:18:44,475 - 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 06:18:44,476 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 175.119.234.181:14072 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:49945 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:45,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 06:18:45,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 06:18:45,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.197s +2025-10-02 06:18:45,393 - 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 06:18:45,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 06:18:45,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49946 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59792 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59804 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:59818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53723 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:45,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 06:18:45,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 06:18:45,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 06:18:46,058 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:18:46,058 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:46,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:46,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 06:18:46,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 06:18:46,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.146s +2025-10-02 06:18:46,345 - 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 06:18:46,346 - 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 06:18:46,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56137 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59822 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:46,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 06:18:46,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 06:18:46,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.149s +2025-10-02 06:18:46,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:18:46,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:46,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53724 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59824 - "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 06:18:47,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 06:18:47,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 06:18:47,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.164s +2025-10-02 06:18:47,650 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:18:47,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:47,650 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59830 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59836 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:49,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 06:18:49,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:18:49,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.165s +2025-10-02 06:18:49,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:18:49,214 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:49,214 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59846 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49950 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:50,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 06:18:50,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 06:18:50,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.181s +2025-10-02 06:18:50,213 - 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 06:18:50,213 - 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 06:18:50,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49951 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:50,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 06:18:50,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 06:18:50,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.166s +2025-10-02 06:18:50,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:18:50,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:50,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59848 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:51,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 06:18:51,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 06:18:51,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.151s +2025-10-02 06:18:51,194 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:18:51,194 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:51,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52705 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14076 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59862 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59876 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:18:51,719 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:18:51,720 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:18:51,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.289s +2025-10-02 06:18:52,009 - 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.144s/image) +2025-10-02 06:18:52,009 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:18:52,009 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52706 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14077 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:18:52,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 06:18:52,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 06:18:52,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.154s +2025-10-02 06:18:52,746 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:18:52,746 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:52,746 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59878 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53600 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53610 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53626 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53728 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53642 - "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 06:18:57,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 06:18:57,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 06:18:57,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.182s +2025-10-02 06:18:57,382 - 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 06:18:57,382 - 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 06:18:57,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49956 - "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 06:18: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 06:18:57,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 06:18:57,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.166s +2025-10-02 06:18:57,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:18:57,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:18:57,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53729 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53652 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53656 - "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 06:18:57,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 06:18:57,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 06:18:57,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:18:58,103 - 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 06:18:58,104 - 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 06:18:58,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9213 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53666 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53682 - "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 06:19:00,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 06:19:00,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 06:19:00,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.157s +2025-10-02 06:19:00,160 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:19:00,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:00,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53684 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53698 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62639 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:01,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 06:19:01,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 06:19:01,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.150s +2025-10-02 06:19:01,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:19:01,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:01,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62640 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53712 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53716 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51275 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:03,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 06:19:03,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 06:19:03,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.149s +2025-10-02 06:19:03,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:19:03,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:03,478 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51276 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48188 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48192 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48202 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:49963 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48206 - "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 06:19:06,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 06:19:06,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 06:19: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.175s +2025-10-02 06:19:06,284 - 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 06:19:06,284 - 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 06:19:06,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49964 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48218 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48222 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:07,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 06:19:07,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 06:19:07,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 06:19:07,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:19:07,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:07,672 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48226 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48236 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48248 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48250 - "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 06:19:10,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 06:19:10,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 06:19:10,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.167s +2025-10-02 06:19:10,197 - 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 06:19:10,197 - 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 06:19:10,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48256 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48258 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48266 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48280 - "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 06:19:13,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 06:19:13,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 06:19:13,392 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:19:13,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:19:13,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:13,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60600 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:19:14,747 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:19:14,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.984 +2025-10-02 06:19:14,846 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.984 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 06:19:14,846 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:19:14,849 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 61.255.207.212:56143 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:60610 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60626 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60636 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60640 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60656 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:61888 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60664 - "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 06:19:18,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 06:19:18,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 06:19:18,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.156s +2025-10-02 06:19:18,394 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:19:18,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:18,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61889 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56147 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:19:18,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:19:18,936 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=95.524 +2025-10-02 06:19:19,027 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.524 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:19:19,027 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:19:19,028 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:56148 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:60680 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60692 - "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 06:19:19,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 06:19:19,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 06:19:19,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.148s +2025-10-02 06:19:19,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 06:19:19,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:19,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:53047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:20,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 06:19:20,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 06:19:20,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.148s +2025-10-02 06:19:20,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:19:20,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:20,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60708 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:20,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 06:19:20,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 06:19:20,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.136s +2025-10-02 06:19:20,551 - 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 06:19:20,551 - 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 06:19:20,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60722 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:49977 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60736 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:22,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 06:19:22,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 06:19:22,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.167s +2025-10-02 06:19:22,473 - 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 06:19:22,473 - 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 06:19:22,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49978 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:64668 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59318 - "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 06:19:23,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 06:19:23,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 06:19:23,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 06:19:23,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 06:19:23,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 06:19:23,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64671 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:19:24,235 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:19:24,258 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.045 +2025-10-02 06:19:24,336 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.045 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 06:19:24,336 - 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 06:19:24,339 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:56155 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:59332 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59336 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52729 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:25,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 06:19:25,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 06:19:25,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.141s +2025-10-02 06:19:25,151 - 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 06:19:25,151 - 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 06:19:25,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14104 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:25,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 06:19:25,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 06:19:25,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.154s +2025-10-02 06:19:25,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:19:25,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:25,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52730 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59350 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:25,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 06:19:25,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 06:19:25,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.161s +2025-10-02 06:19:26,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:19:26,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:26,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14105 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19: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 06:19: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 06:19:26,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.142s +2025-10-02 06:19:26,446 - 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 06:19:26,446 - 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 06:19:26,446 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59366 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59372 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59382 - "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 06:19:27,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 06:19:27,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 06:19: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.146s +2025-10-02 06:19:27,887 - 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 06:19:27,887 - 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 06:19:27,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59388 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59402 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:19:30,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 06:19:30,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 06:19:30,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.144s +2025-10-02 06:19:30,236 - 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 06:19:30,236 - 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 06:19:30,236 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:49985 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:19:30,628 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:19:30,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:19:30,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +2025-10-02 06:19:30,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +2025-10-02 06:19:30,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:19:30,963 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:49986 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59406 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52734 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:19:31,023 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:19:31,042 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.616 +2025-10-02 06:19:31,122 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.616 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:19:31,122 - 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 06:19:31,123 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 175.119.234.181:12760 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:59416 - "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 06:19: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 06:19: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 06:19:31,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.146s +2025-10-02 06:19:31,615 - 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 06:19:31,616 - 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 06:19:31,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:32,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 06:19:32,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 06:19:32,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.146s +2025-10-02 06:19:32,317 - 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 06:19:32,317 - 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 06:19:32,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59432 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59444 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45438 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:64954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:35,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 06:19:35,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 06:19:35,312 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:19:35,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:19:35,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:35,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45452 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45462 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45474 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:37,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 06:19:37,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 06:19:37,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.182s +2025-10-02 06:19:37,342 - 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 06:19:37,342 - 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 06:19:37,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14115 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45490 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45500 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53741 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:53061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236: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 06:19:40,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 06:19:40,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 06:19:40,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.152s +2025-10-02 06:19:40,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 06:19:40,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 06:19:40,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45516 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:19:40,548 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:19:40,548 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:19:40,604 - app.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 06:19:40,832 - 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 06:19:40,832 - 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 06:19:40,832 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:19:41,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 06:19:41,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 06:19:41,130 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.296s +2025-10-02 06:19:41,358 - 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 06:19:41,358 - 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 06:19:41,359 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:49994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:53062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45530 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45534 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45550 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54218 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54228 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54240 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54246 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54256 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:47,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 06:19:47,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 06:19:47,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 06:19:47,399 - 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 06:19:47,399 - 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 06:19:47,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:49998 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54262 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54268 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.77.167.192:53746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:48,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 06:19:48,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 06:19:48,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.153s +2025-10-02 06:19:48,274 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:19:48,274 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:48,274 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:49999 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54284 - "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 06:19:48,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 06:19:48,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 06:19:48,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.150s +2025-10-02 06:19:48,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:19:48,568 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:48,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53747 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:65320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54286 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:19:49,559 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:19:49,559 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:19:49,618 - app.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 06:19:49,848 - 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 06:19:49,848 - 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 06:19:49,848 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:65327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54298 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54304 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54322 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50004 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54338 - "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 06:19:53,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 06:19:53,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 06:19: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.174s +2025-10-02 06:19:53,424 - 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 06:19:53,424 - 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 06:19:53,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50005 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41098 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41110 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41116 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19: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 06:19: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 06:19: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.161s +2025-10-02 06:19:55,961 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:19:55,961 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:55,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41118 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:65519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:19:56,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 06:19:56,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 06:19:56,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.162s +2025-10-02 06:19:56,605 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:19:56,606 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:19:56,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41130 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41136 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61968 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:19:58,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 06:19:58,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 06:19:58,477 - app.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 06:19:58,714 - 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 06:19:58,714 - 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 06:19:58,714 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:50010 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61969 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41152 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:00,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 06:20:00,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 06:20:00,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.168s +2025-10-02 06:20:00,659 - 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 06:20:00,659 - 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 06:20:00,659 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53073 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41174 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41176 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:49276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:02,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 06:20:02,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 06:20:02,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.145s +2025-10-02 06:20:02,201 - 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 06:20:02,201 - 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 06:20:02,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:49277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41192 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:03,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 06:20:03,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 06:20:03,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.155s +2025-10-02 06:20:03,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:20:03,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:03,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41198 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53082 - "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 06:20:03,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 06:20:03,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 06:20:03,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.161s +2025-10-02 06:20:04,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:20:04,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:04,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50017 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:04,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 06:20:04,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 06:20:04,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.163s +2025-10-02 06:20:04,709 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:20:04,709 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:04,710 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53086 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:05,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 06:20:05,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 06:20:05,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 06:20:05,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 06:20:05,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 06:20:05,450 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53122 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53126 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53138 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:61983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53150 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:09,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 06:20:09,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 06:20:09,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.179s +2025-10-02 06:20:09,844 - 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 06:20:09,845 - 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 06:20:09,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:20:10,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 06:20:10,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 06:20:10,447 - app.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 06:20:10,676 - 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 06:20:10,677 - 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 06:20:10,677 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:61984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53162 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:10,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 06:20:10,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:20:10,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.157s +2025-10-02 06:20:11,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:20:11,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:11,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53178 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53182 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53196 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:13,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 06:20:13,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 06:20:13,476 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:20:13,600 - 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 06:20:13,600 - 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 06:20:13,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52596 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52606 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:15,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 06:20:15,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 06:20:15,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.155s +2025-10-02 06:20:15,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:20:15,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 06:20:15,795 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52622 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52628 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12811 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52654 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:17,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 06:20:17,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 06:20:17,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.174s +2025-10-02 06:20:17,839 - 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 06:20:17,839 - 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 06:20:17,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12812 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:61992 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52660 - "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 06:20:18,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 06:20:18,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 06:20: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.151s +2025-10-02 06:20:18,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:20:18,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:18,320 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:61993 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52676 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52680 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53088 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:19,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 06:20:19,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 06:20:19,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.155s +2025-10-02 06:20:19,637 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:20:19,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:19,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53089 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9281 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:19,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 06:20:19,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 06:20:19,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 06:20:20,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 06:20:20,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 06:20:20,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9282 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52690 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52704 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52718 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34172 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34184 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34198 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9286 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:24,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 06:20:24,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 06:20: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.164s +2025-10-02 06:20:24,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:20:24,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:24,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:25,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 06:20:25,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 06:20:25,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.151s +2025-10-02 06:20:25,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:20:25,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:25,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:53094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34214 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:25,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 06:20:25,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 06:20:25,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.171s +2025-10-02 06:20:25,830 - 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 06:20:25,830 - 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 06:20:25,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34222 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34224 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34232 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34242 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34258 - "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 06:20:29,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 06:20:29,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 06:20:29,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.155s +2025-10-02 06:20:29,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:20:29,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 06:20:29,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34264 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34268 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:31,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 06:20:31,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 06:20:31,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.141s +2025-10-02 06:20:31,275 - 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 06:20:31,276 - 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 06:20:31,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34278 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34286 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58138 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58176 - "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 06:20:36,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 06:20:36,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 06:20:36,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.170s +2025-10-02 06:20:36,682 - 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 06:20:36,683 - 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 06:20:36,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58200 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58208 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58224 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58240 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58244 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56205 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:40,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 06:20:40,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 06:20:40,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.140s +2025-10-02 06:20:40,520 - 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 06:20:40,520 - 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 06:20:40,520 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58250 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58262 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:20:42,044 - 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 06:20:42,073 - 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=102.908 +2025-10-02 06:20:42,165 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.908 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:20:42,165 - 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 06:20:42,168 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 61.255.207.212:62697 - "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 06:20:42,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 06:20:42,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 06:20:42,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.158s +2025-10-02 06:20:42,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:20:42,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 06:20:42,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58268 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58270 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48526 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:44,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 06:20:44,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 06:20:44,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.167s +2025-10-02 06:20:44,614 - 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 06:20:44,614 - 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 06:20:44,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48534 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48542 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62702 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:20:46,676 - 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 06:20:46,704 - 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.861 +2025-10-02 06:20:46,802 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=125.861 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.097s +2025-10-02 06:20:46,803 - 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 06:20:46,804 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.100s +INFO: 61.255.207.212:62703 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:48546 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48556 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:48560 - "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 06:20:48,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 06:20: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 06:20:48,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.175s +2025-10-02 06:20:48,229 - 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 06:20:48,229 - 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 06:20:48,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:49,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 06:20:49,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 06:20:49,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.147s +2025-10-02 06:20:49,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:20:49,554 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:49,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14208 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:50,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 06:20:50,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 06:20: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 06:20:51,072 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:20:51,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 06:20:51,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48596 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48608 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48610 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48622 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:20:53,958 - 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 06:20:53,987 - 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=81.755 +2025-10-02 06:20:54,089 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.755 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.101s +2025-10-02 06:20:54,090 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.101s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.105s +2025-10-02 06:20:54,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.105s +INFO: 61.255.207.212:62710 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:40278 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40288 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40302 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:55,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 06:20:55,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 06:20:55,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.164s +2025-10-02 06:20:55,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:20:55,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:55,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14214 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40310 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:56,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 06:20:56,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 06:20:56,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.150s +2025-10-02 06:20:56,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:20:56,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:56,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14215 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40320 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51320 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:20:58,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 06:20:58,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 06:20:58,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.157s +2025-10-02 06:20:58,283 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:20:58,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:20:58,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51321 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40336 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40340 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40342 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40346 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40352 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40366 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21: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 06:21: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 06:21:02,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.150s +2025-10-02 06:21:02,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:21:02,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:02,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40382 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:04,206 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:04,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=43.593 +2025-10-02 06:21:04,324 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=43.593 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:21:04,324 - 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 06:21:04,326 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 220.77.167.192:53755 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:50678 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50686 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51325 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50700 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:05,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 06:21:05,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 06:21:05,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.154s +2025-10-02 06:21:05,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:21:05,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:05,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51326 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50714 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50722 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50724 - "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 06:21:07,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 06:21: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 06:21:07,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.146s +2025-10-02 06:21:07,784 - 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 06:21:07,784 - 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 06:21:07,784 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50732 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50744 - "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 06:21:09,446 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:09,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 06:21:09,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 06:21:09,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:21:09,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:09,594 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:09,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 06:21:09,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 06:21:09,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.139s +2025-10-02 06:21:10,053 - 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 06:21:10,053 - 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 06:21:10,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50752 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50756 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50768 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50770 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:12,612 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:12,646 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.278 +2025-10-02 06:21:12,734 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.278 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:21:12,734 - 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 06:21:12,735 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 211.226.69.49:62067 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:56235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:13,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 06:21:13,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 06:21:13,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.168s +2025-10-02 06:21:13,205 - 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 06:21:13,205 - 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 06:21:13,205 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36884 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36898 - "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 06:21:13,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 06:21:13,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 06:21:13,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.195s +2025-10-02 06:21:13,886 - 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 06:21:13,886 - 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 06:21:13,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36906 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21: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 06:21: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 06:21:14,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 06:21:15,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 06:21:15,080 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:15,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36916 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36920 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36928 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36942 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36956 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:36958 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56242 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:19,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 06:21:19,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 06:21: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.190s +2025-10-02 06:21:19,334 - 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 06:21:19,335 - 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 06:21:19,335 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56243 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36974 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36986 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36996 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21: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 06:21:21,112 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=39.443 +2025-10-02 06:21:21,205 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=39.443 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 06:21:21,206 - 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 06:21:21,207 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 211.226.69.49:62091 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:50042 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37012 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:63771 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:23,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 06:21:23,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 06:21:23,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.169s +2025-10-02 06:21:23,221 - 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 06:21:23,221 - 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 06:21:23,222 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44144 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44150 - "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 06:21:24,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 06:21:24,166 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:24,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.175s +2025-10-02 06:21:24,341 - 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 06:21:24,342 - 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 06:21:24,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63772 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:51144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44160 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:24,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 06:21:24,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 06:21:24,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 06:21:25,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:21:25,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 06:21:25,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:25,154 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:25,174 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.600 +2025-10-02 06:21:25,247 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.600 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 06:21:25,247 - 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 06:21:25,247 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 39.112.59.88:51336 - "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 06:21:25,608 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:21:25,608 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:21:25,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.166s +2025-10-02 06:21:25,775 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:21:25,775 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:25,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44174 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53768 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:26,128 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:26,147 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.452 +2025-10-02 06:21:26,236 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.452 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:21:26,236 - 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 06:21:26,237 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 175.119.234.181:9302 - "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 06:21:26,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 06:21:26,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 06:21: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.148s +2025-10-02 06:21:26,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:21:26,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:26,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53769 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44176 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44190 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44192 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44202 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44206 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44220 - "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 06:21:30,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 06:21:30,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 06:21:30,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.164s +2025-10-02 06:21:30,183 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:21:30,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:30,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44224 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21: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 06:21: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 06:21:31,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 06:21:31,505 - 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 06:21:31,505 - 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 06:21:31,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44228 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51340 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44230 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44234 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:51365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21: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 06:21: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 06:21:33,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.150s +2025-10-02 06:21:33,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 06:21:33,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 06:21:33,724 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:33,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 06:21:33,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 06:21: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.157s +2025-10-02 06:21:34,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:21:34,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:34,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51374 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51298 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:21:34,087 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:21:34,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=98.637 +2025-10-02 06:21:34,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=98.637 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 06:21:34,187 - 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 06:21:34,189 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 175.119.234.181:14251 - "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 06:21:34,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 06:21:34,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 06:21:34,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.151s +2025-10-02 06:21:34,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:21:34,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:34,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51308 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51322 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51330 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51344 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:21:37,502 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:21:37,503 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:21:37,556 - app.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 06:21:37,794 - 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 06:21:37,794 - 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 06:21:37,794 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:56260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51360 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:63783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:38,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 06:21:38,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 06:21:38,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 06:21:38,889 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:21:38,889 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:38,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63784 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51376 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51386 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51394 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9313 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51408 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51416 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56266 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51418 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:21:42,917 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:21:42,918 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:21:42,968 - app.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 06:21:43,201 - 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 06:21:43,201 - 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 06:21:43,201 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:56267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46794 - "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 06:21: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 06:21: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 06:21:44,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.160s +2025-10-02 06:21:44,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:21:44,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:44,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9314 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46806 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46820 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:45,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 06:21:45,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 06:21:45,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.147s +2025-10-02 06:21:45,938 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:21:45,938 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:45,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46826 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46838 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46844 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46856 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:46862 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:21: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 06:21: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 06:21:48,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.164s +2025-10-02 06:21:49,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:21:49,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:49,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46866 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:62130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46876 - "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 06:21:50,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 06:21:50,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 06:21:50,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.169s +2025-10-02 06:21:50,447 - 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 06:21:50,447 - 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 06:21:50,448 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62131 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9318 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:50,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 06:21:50,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 06:21:50,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.145s +2025-10-02 06:21:50,923 - 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 06:21:50,923 - 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 06:21:50,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88: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 06:21:51,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 06:21:51,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 06:21:51,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.151s +2025-10-02 06:21:51,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 06:21:51,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 06:21:51,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9319 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46886 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46906 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:53,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 06:21:53,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 06:21:53,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 06:21:53,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:21:53,381 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:53,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46910 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34630 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34642 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34650 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34652 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34662 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34664 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:21:58,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 06:21:58,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 06:21:58,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 06:21:58,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:21:58,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:21:58,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34680 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34682 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56281 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50069 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34688 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34694 - "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 06:22:00,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 06:22:00,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 06:22:00,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.180s +2025-10-02 06:22:00,776 - 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 06:22:00,776 - 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 06:22:00,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56282 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:01,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 06:22:01,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 06:22:01,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.163s +2025-10-02 06:22:01,262 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:22:01,262 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:01,262 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50070 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34710 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34720 - "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 06:22:02,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 06:22:02,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 06:22:02,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.168s +2025-10-02 06:22:03,101 - 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 06:22:03,101 - 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 06:22:03,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47116 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47132 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:04,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 06:22:04,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 06:22:04,293 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:22:04,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:22:04,416 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:04,416 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53778 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47148 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:04,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 06:22:04,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 06:22:04,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.157s +2025-10-02 06:22:04,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:22:04,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:04,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:06,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 06:22:06,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 06:22:06,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.153s +2025-10-02 06:22:06,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:22:06,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:06,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47166 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47168 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47180 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47188 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:22:09,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 06:22:09,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 06:22:09,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.158s +2025-10-02 06:22:09,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:22:09,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:09,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62200 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:09,496 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:09,497 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:09,551 - app.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 06:22:09,764 - 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 06:22:09,765 - 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 06:22:09,765 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:50075 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:63806 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47192 - "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 06:22:10,028 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:10,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 06:22:10,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.143s +2025-10-02 06:22:10,171 - 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 06:22:10,171 - 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 06:22:10,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62201 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47198 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:11,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 06:22:11,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 06:22:11,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.160s +2025-10-02 06:22:11,451 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:22:11,451 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:11,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47208 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47214 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:58003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:13,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 06:22:13,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 06:22:13,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.176s +2025-10-02 06:22:13,615 - 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 06:22:13,616 - 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 06:22:13,616 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:58004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:13,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 06:22:13,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 06:22:13,884 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:22:14,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:22:14,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:14,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54090 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9330 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54106 - "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 06:22:15,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 06:22:15,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 06:22:15,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.154s +2025-10-02 06:22:15,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:22:15,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:15,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9331 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54122 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:16,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 06:22:16,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 06:22:17,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 06:22:17,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:22:17,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:17,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54134 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54150 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54158 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54168 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:54178 - "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 06:22:19,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 06:22:19,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 06:22:19,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.164s +2025-10-02 06:22:19,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:22:19,515 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:19,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:63810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54186 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:20,293 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:20,293 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:20,342 - app.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 06:22:20,566 - 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 06:22:20,566 - 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 06:22:20,566 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:63811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54194 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54206 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54208 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50084 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:23,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 06:22:23,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 06:22:23,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.168s +2025-10-02 06:22:23,836 - 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 06:22:23,837 - 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 06:22:23,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:24,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 06:22:24,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 06:22:24,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.275s +2025-10-02 06:22:24,283 - 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 06:22:24,284 - 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 06:22:24,284 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50085 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:22:24,323 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:22:24,342 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=213.047 +2025-10-02 06:22:24,417 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=213.047 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:22:24,418 - 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 06:22:24,419 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 175.119.234.181:8685 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33438 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:24,774 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:24,775 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:24,813 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.243s +2025-10-02 06:22:25,018 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.243s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.243s (avg: 0.122s/image) +2025-10-02 06:22:25,018 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.243s (avg: 0.122s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:22:25,019 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:51371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:26,099 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:26,100 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:26,155 - app.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 06:22:26,387 - 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 06:22:26,388 - 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 06:22:26,388 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62222 - "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: 127.0.0.1:33452 - "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 06:22:26,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 06:22:26,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 06:22: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.157s +2025-10-02 06:22:27,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:22:27,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:27,016 - 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: 61.255.207.212:56314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:27,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 06:22:27,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 06:22:27,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.145s +2025-10-02 06:22:27,535 - 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 06:22:27,535 - 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 06:22:27,535 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33454 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33460 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33464 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:29,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 06:22:29,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 06:22:29,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 06:22:29,238 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:22:29,238 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:29,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9357 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33468 - "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 06:22: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 06:22: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 06:22: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.153s +2025-10-02 06:22:29,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:22:29,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 06:22:29,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9358 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33470 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33486 - "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 06:22:31,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 06:22: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 06:22:31,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.161s +2025-10-02 06:22:31,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:22:31,172 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:31,172 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50090 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:52254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:32,086 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:32,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 06:22:32,140 - app.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 06:22:32,368 - 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 06:22:32,368 - 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 06:22:32,368 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50091 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33496 - "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 06:22:32,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 06:22:32,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 06:22:32,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.134s +2025-10-02 06:22:32,749 - 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 06:22:32,749 - 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 06:22:32,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:32,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 06:22:32,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 06:22:32,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.145s +2025-10-02 06:22:33,035 - 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 06:22:33,035 - 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 06:22:33,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:33,635 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO: 127.0.0.1:37846 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:22:33,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 06:22:33,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.148s +2025-10-02 06:22:33,785 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:22:33,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:33,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53799 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37856 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37866 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37868 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:36,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 06:22:36,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 06:22:36,259 - app.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 06:22:36,487 - 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.140s/image) +2025-10-02 06:22:36,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:22:36,488 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37872 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37884 - "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 06:22:36,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 06:22:36,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 06:22:36,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.149s +2025-10-02 06:22:37,085 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:22:37,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:37,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37896 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:52445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:38,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 06:22:38,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 06:22:38,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.131s +2025-10-02 06:22:38,722 - 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 06:22:38,722 - 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 06:22:38,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50095 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37908 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:39,101 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:39,102 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:39,148 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-02 06:22:39,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.259s (avg: 0.129s/image) +2025-10-02 06:22:39,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.129s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:22:39,361 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:50096 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:22:39,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 06:22:39,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 06:22:39,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.142s +2025-10-02 06:22:39,668 - 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 06:22:39,668 - 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 06:22:39,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37920 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37922 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37936 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9377 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37948 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:42,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 06:22:42,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:22: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.174s +2025-10-02 06:22:42,222 - 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 06:22:42,223 - 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 06:22:42,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8702 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:42,510 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:42,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 06:22:42,556 - app.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 06:22:42,780 - 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 06:22:42,780 - 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 06:22:42,780 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:14330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8703 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37960 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37966 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52802 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:62270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:22:43,564 - 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 06:22:43,598 - 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.833 +2025-10-02 06:22:43,695 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.833 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.096s +2025-10-02 06:22:43,695 - 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 06:22:43,696 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.098s +INFO: 220.77.167.192:52803 - "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 06:22: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 06:22:43,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 06:22:43,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.146s +2025-10-02 06:22:44,014 - 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 06:22:44,014 - 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 06:22:44,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48724 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:22:44,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 06:22:44,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 06:22:44,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.143s +2025-10-02 06:22:44,859 - 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 06:22:44,859 - 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 06:22:44,859 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48740 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22: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 06:22: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 06:22:45,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 06:22:45,743 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:22:45,743 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:45,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:45,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 06:22:45,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 06:22:45,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.160s +2025-10-02 06:22:46,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:22:46,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:46,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48750 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48754 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48758 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:47,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 06:22:47,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 06:22:47,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.170s +2025-10-02 06:22:47,435 - 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 06:22:47,436 - 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 06:22:47,436 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:47,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 06:22:47,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 06:22:47,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.143s +2025-10-02 06:22:47,725 - 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 06:22:47,725 - 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 06:22:47,725 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14341 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48772 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:48,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 06:22:48,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 06:22:48,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.177s +2025-10-02 06:22:48,554 - 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 06:22:48,554 - 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 06:22:48,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14342 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:48,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 06:22:48,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 06:22:48,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.158s +2025-10-02 06:22:48,865 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:22:48,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:48,866 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48780 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48792 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:48808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51389 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:49,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 06:22:49,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 06:22: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.132s +2025-10-02 06:22:50,107 - 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 06:22:50,108 - 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 06:22:50,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51390 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48818 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48826 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:52779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:62283 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:51,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 06:22:51,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 06:22:51,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.135s +2025-10-02 06:22:51,770 - 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 06:22:51,770 - 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 06:22:51,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:51,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 06:22:51,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 06:22:51,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.158s +2025-10-02 06:22:52,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:22:52,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:52,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62284 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48830 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48844 - "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 06:22:52,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 06:22:52,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 06:22:52,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.159s +2025-10-02 06:22:52,653 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:22:52,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:22:52,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37456 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50105 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:22:54,906 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:22:54,907 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:22:54,957 - app.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 06:22:55,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.285s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +2025-10-02 06:22:55,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.285s (avg: 0.143s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:22:55,193 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50106 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37460 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37472 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37486 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:56,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 06:22:56,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 06:22:56,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.176s +2025-10-02 06:22:56,587 - 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 06:22:56,587 - 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 06:22:56,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:22:57,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 06:22:57,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 06:22:57,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.179s +2025-10-02 06:22:57,226 - 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 06:22:57,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 06:22:57,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37500 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37508 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:52997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37522 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:22:59,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 06:22:59,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 06:22: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.140s +2025-10-02 06:22:59,705 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.140s (avg: 0.140s/image) +2025-10-02 06:22:59,706 - 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 06:22:59,706 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53002 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37530 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:23:01,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 06:23:01,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 06:23:01,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.151s +2025-10-02 06:23:01,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:23:01,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:01,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37534 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37540 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:02,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 06:23:02,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 06:23:02,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.151s +2025-10-02 06:23:02,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:23:02,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:02,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37546 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8720 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:03,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 06:23:03,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 06:23:03,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 06:23:03,388 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:23:03,389 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:03,389 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37552 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:62294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57078 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57082 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:05,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 06:23:05,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 06:23:05,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.159s +2025-10-02 06:23:05,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:23:05,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 06:23:05,959 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62295 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:06,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 06:23:06,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 06:23:06,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.135s +2025-10-02 06:23:06,247 - 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 06:23:06,247 - 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 06:23:06,248 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57112 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57118 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57134 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14364 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57152 - "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 06:23:10,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 06:23:10,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 06:23:10,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.168s +2025-10-02 06:23:10,472 - 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 06:23:10,473 - 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 06:23:10,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57162 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57166 - "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 06:23:10,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 06:23:10,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 06:23:10,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 06:23:11,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:23:11,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:11,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57178 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:11,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 06:23:11,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 06:23: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.176s +2025-10-02 06:23:11,759 - 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 06:23:11,759 - 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 06:23:11,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14365 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57192 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52916 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52928 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:62309 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:14,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 06:23:14,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 06:23:14,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 06:23:14,378 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:23:14,378 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:14,378 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52938 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:15,551 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:15,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 06:23:15,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.175s +2025-10-02 06:23:15,727 - 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 06:23:15,727 - 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 06:23:15,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52946 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8732 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52958 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52970 - "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 06:23:17,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 06:23:17,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 06:23:17,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.165s +2025-10-02 06:23:17,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:23:17,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:17,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8733 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52974 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23: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 06:23: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 06:23:18,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.183s +2025-10-02 06:23:18,698 - 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 06:23:18,698 - 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 06:23:18,698 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52982 - "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 06:23:19,341 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:19,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:19,389 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:23:19,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:23:19,508 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:19,508 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52992 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52996 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53004 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53014 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:21,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 06:23:21,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 06:23:21,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.171s +2025-10-02 06:23:21,875 - 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 06:23:21,875 - 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 06:23:21,876 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51403 - "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: 127.0.0.1:53028 - "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 06:23:22,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 06:23:22,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 06:23:22,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.146s +2025-10-02 06:23:23,052 - 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 06:23:23,052 - 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 06:23:23,052 - 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: 127.0.0.1:58588 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58604 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58606 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58622 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58644 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51407 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:23:27,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 06:23:27,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 06:23:27,298 - app.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 06:23:27,523 - 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 06:23:27,523 - 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 06:23:27,524 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:51408 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50128 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58652 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58654 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58658 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58660 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58676 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58692 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 06:23:32,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 06:23:32,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 06:23:32,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.169s +2025-10-02 06:23:32,382 - 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 06:23:32,383 - 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 06:23:32,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:58012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58706 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58716 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:33,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 06:23:33,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 06:23:33,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.167s +2025-10-02 06:23:33,758 - 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 06:23:33,758 - 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 06:23:33,758 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39928 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50132 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39932 - "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 06:23:34,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:23:34,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:23:34,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.159s +2025-10-02 06:23:34,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 06:23:34,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 06:23:34,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50133 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39938 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39952 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39956 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:37,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 06:23:37,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 06:23:37,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.159s +2025-10-02 06:23:37,838 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:23:37,839 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:37,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39972 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39986 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39990 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23: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 06:23: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 06:23:39,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.166s +2025-10-02 06:23:40,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:23:40,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:40,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39996 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40008 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50137 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:41,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 06:23:41,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 06:23:41,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.154s +2025-10-02 06:23:41,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 06:23:41,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 06:23:41,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50138 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40014 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40024 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40030 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:43,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 06:23:43,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 06:23: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.148s +2025-10-02 06:23:43,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:23:43,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 06:23:43,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36296 - "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 06:23:44,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 06:23:44,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 06:23:44,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.165s +2025-10-02 06:23:44,230 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:23:44,230 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:44,230 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36310 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:54154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:23:45,421 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:23:45,443 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.698 +2025-10-02 06:23:45,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.698 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:23:45,526 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:23:45,528 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 211.197.218.214:54155 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36324 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36326 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36340 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36354 - "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 06:23:48,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 06:23:48,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 06:23:48,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.154s +2025-10-02 06:23:48,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 06:23:48,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:48,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50143 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:48,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 06:23:48,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 06:23:48,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.146s +2025-10-02 06:23:49,081 - 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 06:23:49,081 - 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 06:23:49,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51426 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36364 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36378 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36380 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36384 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:36396 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52828 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36398 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:52,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 06:23:52,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 06:23:52,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.183s +2025-10-02 06:23:52,446 - 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 06:23:52,447 - 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 06:23:52,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52829 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36402 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37494 - "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 06:23:54,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 06:23:54,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 06:23:54,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.169s +2025-10-02 06:23:54,882 - 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 06:23:54,882 - 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 06:23:54,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:55,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 06:23:55,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 06:23:55,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.169s +2025-10-02 06:23:55,341 - 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 06:23:55,341 - 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 06:23:55,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50149 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:54175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37508 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23: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 06:23:55,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 06:23:55,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.146s +2025-10-02 06:23:55,768 - 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 06:23:55,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 06:23:55,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37520 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:56,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 06:23:56,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 06:23:57,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:23:57,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:23:57,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:57,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37534 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52835 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37536 - "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 06:23:57,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 06:23:57,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 06:23:57,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.169s +2025-10-02 06:23:57,880 - 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 06:23:57,880 - 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 06:23:57,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52836 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51435 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:23:58,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 06:23:58,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 06:23:58,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 06:23:58,929 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:23:58,930 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:23:58,930 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51436 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37550 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63856 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37560 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:00,387 - 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 06:24:00,408 - 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=215.919 +2025-10-02 06:24:00,486 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=215.919 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 06:24:00,487 - 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 06:24:00,487 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:63857 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:37564 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50153 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:01,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 06:24:01,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 06:24:01,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.155s +2025-10-02 06:24:01,694 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:24:01,694 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:01,695 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50154 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37572 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37574 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:03,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 06:24:03,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 06:24:03,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.153s +2025-10-02 06:24:03,276 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:24:03,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:03,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51442 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37580 - "GET /api/v1/stats 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 06:24: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 06:24: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 06:24: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.164s +2025-10-02 06:24:03,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:24:03,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:03,844 - 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: 127.0.0.1:43322 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43330 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:54296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43346 - "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 06:24:05,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 06:24:05,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 06:24:05,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 06:24:05,728 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:24:05,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:05,729 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54305 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43356 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43368 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:07,180 - 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 06:24:07,213 - 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=10.099 +2025-10-02 06:24:07,303 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=10.099 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:24:07,304 - 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 06:24:07,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:62823 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:51446 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:07,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 06:24:07,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 06:24:07,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 06:24:08,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:24:08,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 06:24:08,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51448 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43376 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43378 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:08,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 06:24:08,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 06:24:08,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.157s +2025-10-02 06:24:08,917 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:24:08,917 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:08,917 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50159 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43386 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43392 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8802 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62829 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63863 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:11,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 06:24:11,149 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:11,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 06:24:11,298 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:24:11,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:11,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 127.0.0.1:43406 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8803 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:11,332 - 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 06:24:11,347 - 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=50.364 +2025-10-02 06:24:11,418 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=50.364 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.070s +2025-10-02 06:24:11,419 - 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 06:24:11,419 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +INFO: 61.255.207.212:63865 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:43408 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:11,514 - 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 06:24:11,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=22.359 +2025-10-02 06:24:11,608 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=22.359 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 06:24:11,608 - 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 06:24:11,609 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 61.255.207.212:62830 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:51452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:12,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 06:24:12,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 06:24:12,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.147s +2025-10-02 06:24:12,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:24:12,662 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:12,662 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43430 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:54522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:13,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 06:24:13,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 06:24: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.146s +2025-10-02 06:24:13,941 - 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 06:24:13,941 - 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 06:24:13,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55788 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55800 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62834 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:15,057 - 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 06:24:15,094 - 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=9.070 +2025-10-02 06:24:15,186 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=9.070 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 06:24:15,187 - 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 06:24:15,188 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 61.255.207.212:62835 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:15,402 - 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 06:24:15,431 - 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=61.419 +2025-10-02 06:24:15,514 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.419 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:24:15,514 - 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 06:24:15,514 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:63872 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:55802 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:16,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 06:24:16,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 06:24:16,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.149s +2025-10-02 06:24:16,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:24:16,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:16,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55806 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:62428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:24:17,281 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:17,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:17,332 - app.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 06:24:17,547 - 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 06:24:17,547 - 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 06:24:17,547 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55820 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55836 - "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 06:24:17,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 06:24:17,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 06:24:17,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.147s +2025-10-02 06:24:17,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:24:17,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:17,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55848 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55852 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55872 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55876 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55878 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:62840 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:22,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 06:24:22,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 06:24:22,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.152s +2025-10-02 06:24:22,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:24:22,774 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:22,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62841 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:22,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 06:24:22,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 06:24: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.138s +2025-10-02 06:24:23,053 - 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 06:24:23,053 - 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 06:24:23,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55884 - "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 06:24:23,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 06:24:23,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 06:24:23,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.160s +2025-10-02 06:24:23,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:24:23,952 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:23,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32950 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32966 - "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 06:24:24,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 06:24:24,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 06:24:24,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 06:24:24,741 - 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 06:24:24,741 - 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 06:24:24,741 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32972 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32982 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:32990 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32998 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:28,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 06:24:28,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 06:24:28,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.154s +2025-10-02 06:24:28,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:24:28,258 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:28,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56385 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:28,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 06:24:28,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 06:24:28,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.148s +2025-10-02 06:24:28,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:24:28,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:28,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56386 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33022 - "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 06:24:29,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 06:24:29,604 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:24:29,638 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:24:29,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 06:24:29,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 06:24:29,757 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:49980 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:54986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33026 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33040 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:30,559 - 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 06:24:30,587 - 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=140.316 +2025-10-02 06:24:30,674 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=140.316 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:24:30,674 - 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 06:24:30,676 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 175.119.234.181:49981 - "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 06:24:30,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 06:24:30,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 06:24:30,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.134s +2025-10-02 06:24:30,948 - 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 06:24:30,949 - 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 06:24:30,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54993 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:31,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 06:24:31,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 06:24: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.155s +2025-10-02 06:24:31,303 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:24:31,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:31,304 - 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: 127.0.0.1:33042 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:31,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 06:24:31,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 06:24:31,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.136s +2025-10-02 06:24:31,803 - 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 06:24:31,803 - 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 06:24:31,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33044 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:33,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 06:24:33,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 06:24:33,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.141s +2025-10-02 06:24:33,552 - 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 06:24:33,552 - 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 06:24:33,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42182 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42198 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42210 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:55133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:36,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 06:24:36,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 06:24:36,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.162s +2025-10-02 06:24:36,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 06:24:36,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 06:24:36,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42226 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42230 - "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 06:24:36,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 06:24:36,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 06:24:37,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.147s +2025-10-02 06:24:37,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:24:37,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:37,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42238 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42250 - "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 06:24:38,698 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:24:38,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 06:24:38,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.151s +2025-10-02 06:24:38,849 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:24:38,849 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:38,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:39,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 06:24:39,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 06:24:39,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.169s +2025-10-02 06:24:39,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 06:24:39,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 06:24:39,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62453 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42256 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42272 - "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 06:24:40,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 06:24: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 06:24:40,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.154s +2025-10-02 06:24:40,589 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:24:40,589 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:40,589 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62454 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42276 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42280 - "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 06:24:41,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 06:24:41,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 06:24:41,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.165s +2025-10-02 06:24:41,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:24:41,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:41,933 - 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: 175.119.234.181:14411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42286 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42288 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:24:42,812 - 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 06:24:42,844 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=46.664 +2025-10-02 06:24:42,937 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.664 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 06:24:42,937 - 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 06:24:42,939 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 175.119.234.181:14412 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:56399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45516 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:43,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 06:24:43,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 06:24:43,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.164s +2025-10-02 06:24:44,070 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:24:44,070 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:44,070 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:49986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45532 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:24:44,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 06:24:44,965 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:45,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.289s +2025-10-02 06:24:45,254 - 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.144s/image) +2025-10-02 06:24:45,254 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.289s (avg: 0.144s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:24:45,254 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:51484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:49987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45548 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45550 - "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 06:24:46,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 06:24:46,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 06:24:46,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 06:24:46,455 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:24:46,456 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:46,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55362 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45552 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56406 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:48,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 06:24:48,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 06:24: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.158s +2025-10-02 06:24:48,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:24:48,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:48,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:48,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 06:24:48,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 06:24:48,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 06:24:48,831 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:24:48,831 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:48,832 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56407 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45580 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45588 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:24:49,598 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:49,598 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:49,656 - app.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 06:24:49,891 - 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 06:24:49,891 - 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 06:24:49,892 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45598 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:62464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55548 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:24:51,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 06:24:51,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 06:24:51,107 - app.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 06:24:51,333 - 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 06:24:51,333 - 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 06:24:51,334 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:55549 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45616 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:51,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 06:24:51,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 06:24:51,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.151s +2025-10-02 06:24:52,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:24:52,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:52,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45622 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45650 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:40258 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:54,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 06:24:54,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 06:24:54,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.156s +2025-10-02 06:24:54,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:24:54,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:54,978 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50192 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40268 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40278 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:50002 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:55,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 06:24:55,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 06:24:55,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.149s +2025-10-02 06:24:55,999 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:24:55,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:55,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:56,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 06:24: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 06:24:56,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.156s +2025-10-02 06:24:56,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:24:56,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:56,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50003 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12613 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40284 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:55709 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:24:56,629 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:24:56,629 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:56,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.276s +2025-10-02 06:24:56,905 - 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 06:24:56,906 - 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 06:24:56,906 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:55720 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:12614 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40294 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:24:57,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 06:24:57,294 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:24:57,349 - app.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 06:24:57,561 - 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 06:24:57,561 - 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 06:24:57,561 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:14434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:24:57,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 06:24:57,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 06:24:57,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.139s +2025-10-02 06:24:57,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 06:24:57,853 - 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 06:24:57,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40302 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40312 - "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 06:24:58,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 06:24:58,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 06:24:58,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.157s +2025-10-02 06:24:58,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:24:58,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:24:58,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9455 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40320 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40332 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:12618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:01,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 06:25:01,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 06:25: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.161s +2025-10-02 06:25:01,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 06:25:01,201 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:01,201 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40336 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40352 - "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 06:25:01,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 06:25:01,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 06:25:01,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.154s +2025-10-02 06:25:01,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:25:01,670 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:01,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:55880 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:02,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 06:25:02,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 06:25:02,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.144s +2025-10-02 06:25:02,255 - 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 06:25:02,255 - 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 06:25:02,255 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40360 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51501 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:25:03,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 06:25:03,122 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:25:03,175 - app.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 06:25:03,403 - 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 06:25:03,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 06:25:03,404 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:50197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51502 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40376 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 06:25:03,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 06:25:03,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 06:25:03,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.144s +2025-10-02 06:25:03,849 - 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 06:25:03,849 - 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 06:25:03,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:03,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 06:25:03,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 06:25: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.164s +2025-10-02 06:25:04,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:25:04,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:04,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:04,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 06:25:04,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 06:25:04,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.146s +2025-10-02 06:25:04,451 - 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 06:25:04,452 - 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 06:25:04,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47104 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47108 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47114 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:25:05,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 06:25:05,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 06:25:05,771 - app.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 06:25:05,999 - 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 06:25:05,999 - 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 06:25:05,999 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:56424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9460 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47120 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:50007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:07,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 06:25:07,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 06:25:07,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.162s +2025-10-02 06:25:07,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:25:07,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 06:25:07,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:62872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47126 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47140 - "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 06:25:08,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 06:25:08,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 06:25:08,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.150s +2025-10-02 06:25:08,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:25:08,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:08,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47152 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:12632 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47162 - "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 06:25:09,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 06:25:09,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 06:25:09,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.166s +2025-10-02 06:25:09,792 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:25:09,792 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:09,792 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12633 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:10,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 06:25:10,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 06:25:10,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.139s +2025-10-02 06:25:10,400 - 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 06:25:10,400 - 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 06:25:10,400 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47180 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:25:10,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 06:25:10,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 06:25:10,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 06:25:10,832 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:25:10,832 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:10,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:10,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 06:25:10,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 06:25:11,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.147s +2025-10-02 06:25:11,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:25:11,119 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:11,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47194 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:13,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 06:25:13,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 06:25: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.150s +2025-10-02 06:25:13,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:25:13,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:13,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34172 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:62504 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:25:14,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 06:25:14,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 06:25:14,182 - app.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 06:25:14,405 - 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 06:25:14,405 - 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 06:25:14,406 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:62883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62505 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34180 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34186 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:16,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 06:25:16,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 06:25:16,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.157s +2025-10-02 06:25:16,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 06:25:16,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 06:25:16,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34196 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34202 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34208 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50207 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:18,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 06:25:18,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 06:25:18,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.167s +2025-10-02 06:25:18,479 - 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 06:25:18,479 - 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 06:25:18,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50208 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:18,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 06:25:18,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 06:25:18,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.124s +2025-10-02 06:25:18,750 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.124s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +2025-10-02 06:25:18,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.124s (avg: 0.124s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:18,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34220 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:19,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 06:25:19,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 06:25:19,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 06:25:19,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 06:25:19,676 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:19,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34236 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34252 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34256 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34272 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12653 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:62894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:22,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 06:25:22,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 06:25:22,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.148s +2025-10-02 06:25:22,918 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:25:22,918 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:22,919 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62895 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:23,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 06:25:23,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 06:25:23,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.156s +2025-10-02 06:25:23,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:25:23,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:23,307 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12654 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34278 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34284 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40444 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40450 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:50212 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:25,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 06:25:25,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 06:25:25,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.166s +2025-10-02 06:25:25,220 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:25:25,220 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:25,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50213 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40456 - "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 06:25:25,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 06:25:25,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 06:25:25,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.156s +2025-10-02 06:25:25,814 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:25:25,814 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:25,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40462 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40470 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:27,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 06:25:27,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 06:25:27,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 06:25:27,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:25:27,468 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:27,468 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40482 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14467 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:27,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 06:25:27,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 06:25:27,830 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:25:27,947 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +2025-10-02 06:25:27,947 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.145s (avg: 0.145s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:27,947 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14468 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40498 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40514 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40528 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40542 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:30,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 06:25:30,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 06:25: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.157s +2025-10-02 06:25:30,901 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:25:30,901 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:30,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9736 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40550 - "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 06:25:31,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 06:25:31,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 06:25:31,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.154s +2025-10-02 06:25:31,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 06:25:31,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 06:25:31,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40552 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14474 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25: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 06:25: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 06:25:33,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.143s +2025-10-02 06:25:33,270 - 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 06:25:33,271 - 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 06:25:33,271 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14475 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:56723 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36144 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:33,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 06:25:33,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 06:25:33,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.132s +2025-10-02 06:25:33,803 - 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 06:25:33,803 - 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 06:25:33,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56724 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36148 - "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 06:25:34,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 06:25:34,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 06:25:34,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.153s +2025-10-02 06:25:34,741 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:25:34,742 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:34,742 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36162 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:35,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 06:25:35,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 06:25:35,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.138s +2025-10-02 06:25:35,701 - 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 06:25:35,701 - 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 06:25:35,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36166 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62899 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25: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 06:25:36,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 06:25:36,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.155s +2025-10-02 06:25:36,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:25:36,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:36,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62900 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9744 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36174 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:37,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 06:25:37,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 06:25:37,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.153s +2025-10-02 06:25:37,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:25:37,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:37,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9745 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36184 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:62526 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:37,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 06:25:37,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 06:25:38,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.147s +2025-10-02 06:25:38,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:25:38,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:38,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62527 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36204 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:39,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 06:25:39,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 06:25:39,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.154s +2025-10-02 06:25:39,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:25:39,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:39,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:56882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:40,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 06:25:40,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 06:25:40,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.160s +2025-10-02 06:25:40,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:25:40,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:40,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56889 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36224 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:25:41,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 06:25:41,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 06:25:41,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.135s +2025-10-02 06:25:41,595 - 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 06:25:41,595 - 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 06:25:41,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:60043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36230 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36246 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:42,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 06:25:42,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 06:25:42,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 06:25:42,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:25:42,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:42,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36260 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:25:42,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 06:25:43,019 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.196 +2025-10-02 06:25:43,103 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.196 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:25:43,104 - 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 06:25:43,106 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:56442 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:53848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:43,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 06:25: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 06:25:43,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.143s +2025-10-02 06:25:43,590 - 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 06:25:43,591 - 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 06:25:43,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50380 - "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 06:25:43,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 06:25:43,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 06:25:43,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:25:43,897 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:25:43,897 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:43,897 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53849 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50392 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50402 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:60047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50404 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:46,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 06:25:46,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 06:25:46,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.157s +2025-10-02 06:25:46,554 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:25:46,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 06:25:46,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:60048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50420 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:25:47,826 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:25:47,849 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.136 +2025-10-02 06:25:47,932 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.136 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:25:47,933 - 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 06:25:47,935 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:56449 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:50440 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:25:48,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 06:25:48,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 06:25:48,953 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:25:49,078 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:25:49,078 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:49,078 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50458 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:50,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 06:25:50,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 06:25:50,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.157s +2025-10-02 06:25:50,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 06:25:50,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 06:25:50,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50224 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:50,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 06:25:50,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 06:25:50,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.138s +2025-10-02 06:25:50,723 - 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 06:25:50,723 - 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 06:25:50,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50225 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50468 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50476 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56453 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:25:51,477 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:25:51,497 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.945 +2025-10-02 06:25:51,580 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.945 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:25:51,580 - 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 06:25:51,582 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 61.255.207.212:56454 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:50488 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50502 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42934 - "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 06:25:54,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 06:25:54,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 06:25:54,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.155s +2025-10-02 06:25:54,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:25:54,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:54,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:54,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 06:25:54,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 06:25:54,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.153s +2025-10-02 06:25:54,979 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:25:54,979 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:54,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42942 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42958 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:65082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:55,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 06:25:55,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 06:25:55,764 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:25:55,881 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:25:55,881 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:55,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:65083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42974 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:25:56,280 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:25:56,281 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:25:56,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.138s +2025-10-02 06:25:56,419 - 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 06:25:56,420 - 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 06:25:56,420 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42982 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:57331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42990 - "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 06:25:57,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 06:25:57,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 06:25:57,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.157s +2025-10-02 06:25:57,448 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:25:57,448 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:25:57,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:25:57,478 - 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 06:25:57,499 - 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=194.509 +2025-10-02 06:25:57,587 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=194.509 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:25:57,588 - 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 06:25:57,589 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 220.77.167.192:52869 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:42992 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42994 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43002 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43016 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:00,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 06:26:00,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 06:26:00,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.157s +2025-10-02 06:26:00,682 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:26:00,682 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:00,682 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:01,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 06:26:01,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 06:26:01,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.142s +2025-10-02 06:26:01,362 - 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 06:26:01,363 - 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 06:26:01,363 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50235 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43028 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43042 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53860 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43050 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:26:03,194 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:03,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 06:26:03,247 - app.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 06:26:03,484 - 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 06:26:03,485 - 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 06:26:03,485 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:14521 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53861 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:04,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 06:26:04,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 06:26:04,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.154s +2025-10-02 06:26:04,178 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:26:04,178 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:04,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46276 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46292 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:05,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 06:26: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 06:26:06,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.144s +2025-10-02 06:26:06,141 - 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 06:26:06,142 - 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 06:26:06,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46306 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46316 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46318 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:07,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 06:26:07,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 06:26:07,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.155s +2025-10-02 06:26:07,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:26:07,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:07,814 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46320 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:09,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 06:26:09,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 06:26: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.159s +2025-10-02 06:26:09,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:26:09,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:09,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46330 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46344 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46356 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:10,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 06:26:10,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 06:26:11,018 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:26:11,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:26:11,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:11,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46368 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:12,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 06:26:12,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 06:26:12,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.142s +2025-10-02 06:26:12,685 - 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 06:26:12,685 - 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 06:26:12,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46374 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33396 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:14,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 06:26:14,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 06:26:14,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.159s +2025-10-02 06:26:14,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 06:26:14,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 06:26:14,273 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33404 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33406 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33422 - "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 06:26:15,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 06:26:15,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 06:26:15,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.143s +2025-10-02 06:26:15,998 - 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 06:26:15,998 - 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 06:26:15,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33434 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33438 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:17,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 06:26:17,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 06:26:17,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 06:26:18,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 06:26:18,073 - 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 06:26:18,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33448 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33462 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:20,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 06:26:20,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 06:26:20,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.149s +2025-10-02 06:26:20,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:26:20,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:20,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33472 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50255 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:21,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 06:26:21,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 06:26:21,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.149s +2025-10-02 06:26:21,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:26:21,484 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:21,484 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33476 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26: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 06:26: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 06:26:22,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.166s +2025-10-02 06:26:23,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:26:23,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:23,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33488 - "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 06:26: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 06:26: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 06:26:23,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.145s +2025-10-02 06:26:23,530 - 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 06:26:23,531 - 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 06:26:23,531 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34742 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34758 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34768 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:50260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34782 - "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 06:26:26,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 06:26:26,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 06:26:26,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.139s +2025-10-02 06:26:26,401 - 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 06:26:26,401 - 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 06:26:26,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50261 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:26,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 06:26:26,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 06:26:26,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.148s +2025-10-02 06:26:26,975 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:26:26,976 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:26,976 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34794 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34798 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34804 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34814 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50266 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34820 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34832 - "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 06:26:30,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 06:26:30,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 06:26:30,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.159s +2025-10-02 06:26:30,535 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:26:30,535 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:30,536 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34836 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:26: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 06:26: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 06:26:31,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.135s +2025-10-02 06:26:32,033 - 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 06:26:32,033 - 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 06:26:32,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34852 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56477 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26: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 06:26:32,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 06:26:32,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.170s +2025-10-02 06:26:33,113 - 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 06:26:33,113 - 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 06:26:33,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:26:33,249 - 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 06:26:33,271 - 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=48.681 +2025-10-02 06:26:33,360 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.681 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:26:33,360 - 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 06:26:33,360 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 175.119.234.181:9520 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:34866 - "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 06:26:33,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 06:26:33,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 06:26:33,725 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:26:33,844 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:26:33,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:33,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53876 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:62662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14557 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:26:34,620 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:26:34,644 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.212 +2025-10-02 06:26:34,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=117.212 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:26:34,731 - 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 06:26:34,732 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 211.226.69.49:62663 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:53453 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:34,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 06:26:34,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 06:26:34,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.134s +2025-10-02 06:26:35,051 - 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 06:26:35,051 - 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 06:26:35,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:35,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 06:26:35,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 06:26:35,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.134s +2025-10-02 06:26:35,317 - 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 06:26:35,318 - 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 06:26:35,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53454 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42148 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50271 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:35,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 06:26:35,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 06:26:36,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 06:26:36,120 - 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 06:26:36,121 - 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 06:26:36,121 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42162 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42168 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8658 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:37,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 06:26:37,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 06:26:37,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.161s +2025-10-02 06:26:37,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:26:37,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 06:26:37,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42184 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56485 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:37,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 06:26:37,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 06:26: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.138s +2025-10-02 06:26:37,949 - 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 06:26:37,950 - 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 06:26:37,950 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56486 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42196 - "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 06:26:38,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 06:26:38,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 06:26:38,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.141s +2025-10-02 06:26:38,837 - 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 06:26:38,837 - 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 06:26:38,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:39,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 06:26:39,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 06:26:39,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.149s +2025-10-02 06:26:39,484 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:26:39,485 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:39,485 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42206 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42210 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:58413 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:40,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 06:26:40,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 06:26:40,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.149s +2025-10-02 06:26:40,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 06:26:40,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:40,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42220 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:40,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 06:26:40,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 06:26:40,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.161s +2025-10-02 06:26:40,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:26:40,769 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:40,769 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42228 - "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 06:26:41,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 06:26:41,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 06:26:41,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.147s +2025-10-02 06:26:41,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 06:26:41,939 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:41,939 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52890 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:26:42,396 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:42,396 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:26:42,446 - app.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 06:26:42,670 - 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 06:26:42,670 - 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 06:26:42,670 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:52891 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42232 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42236 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:53458 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54454 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:62672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54464 - "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 06:26:44,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 06:26:44,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 06:26:44,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.144s +2025-10-02 06:26:45,105 - 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 06:26:45,106 - 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 06:26:45,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53459 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:26:45,214 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:26:45,237 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=109.623 +2025-10-02 06:26:45,319 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=109.623 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:26:45,320 - 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 06:26:45,320 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 211.226.69.49:62674 - "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 06:26:45,348 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:45,349 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:26:45,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.294s +2025-10-02 06:26:45,644 - 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 06:26:45,644 - 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 06:26:45,644 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54466 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54472 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50281 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:26:46,604 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:26:46,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 06:26:46,654 - app.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 06:26:46,878 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.273s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +2025-10-02 06:26:46,878 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.273s (avg: 0.136s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:26:46,878 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:9530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50282 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54484 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54498 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54510 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54526 - "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 06:26:49,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 06:26:49,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 06:26:49,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.146s +2025-10-02 06:26:49,344 - 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 06:26:49,344 - 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 06:26:49,344 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54542 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:50,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 06:26:50,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 06:26:50,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:26:50,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:26:50,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:50,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53887 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:50273 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54548 - "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 06:26:50,914 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:50,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 06:26:50,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.172s +2025-10-02 06:26:51,087 - 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 06:26:51,088 - 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 06:26:51,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:51,260 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:26:51,261 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:26:51,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.163s +2025-10-02 06:26:51,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:26:51,424 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:51,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50274 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50286 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:51,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 06:26:51,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 06:26:51,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 06:26:52,051 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:26:52,051 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:52,051 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54576 - "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 06:26:52,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 06:26:52,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 06:26:52,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 06:26:52,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 06:26:52,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 06:26:52,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:53468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54590 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:53,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 06:26:53,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 06:26: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.154s +2025-10-02 06:26:53,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:26:53,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:53,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45698 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45704 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45716 - "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 06:26:55,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 06:26:55,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 06:26:55,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.156s +2025-10-02 06:26:55,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:26:55,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:55,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:55,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 06:26:55,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 06:26:55,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.150s +2025-10-02 06:26:55,977 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:26:55,977 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:55,977 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45730 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45738 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:45754 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56510 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:26:57,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 06:26:57,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 06:26:57,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.158s +2025-10-02 06:26:58,015 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:26:58,016 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:26:58,016 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56511 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45762 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45764 - "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 06:26:58,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 06:26:58,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 06:26:58,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.145s +2025-10-02 06:26:58,645 - 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 06:26:58,645 - 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 06:26:58,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:53473 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:26:59,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 06:26:59,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 06:26:59,188 - app.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 06:26:59,420 - 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 06:26:59,420 - 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 06:26:59,421 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:53474 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45772 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9539 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:00,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 06:27:00,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 06:27:00,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.155s +2025-10-02 06:27:00,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:27:00,161 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:00,161 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9540 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45776 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9701 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:00,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 06:27:00,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 06:27:01,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.153s +2025-10-02 06:27:01,131 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:27:01,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:01,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9702 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45786 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45792 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56515 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:02,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 06:27:02,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 06:27:02,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.158s +2025-10-02 06:27:02,244 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:27:02,244 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:02,244 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56516 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51555 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:27:02,904 - 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 06:27:02,929 - 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=100.664 +2025-10-02 06:27:03,010 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.664 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:27:03,011 - 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 06:27:03,012 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 39.112.59.88:51556 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:45808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:03,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 06:27:03,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 06:27:03,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.142s +2025-10-02 06:27:03,953 - 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 06:27:03,953 - 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 06:27:03,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58256 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58266 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:05,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 06:27:05,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 06:27:05,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.152s +2025-10-02 06:27:05,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:27:05,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:05,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58274 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:53478 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:06,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 06:27:06,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 06:27:06,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.159s +2025-10-02 06:27:06,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:27:06,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 06:27:06,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56521 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58278 - "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 06:27:06,573 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:06,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 06:27: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 06:27:06,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:27:06,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:06,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:07,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 06:27:07,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 06:27:07,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.148s +2025-10-02 06:27:07,467 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:27:07,467 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:07,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58286 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58288 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:07,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 06:27:07,976 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:08,005 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:27:08,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:27:08,124 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:08,124 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:08,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 06:27:08,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 06:27:08,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.150s +2025-10-02 06:27:08,424 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:27:08,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:08,425 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53897 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58302 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56527 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:10,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 06:27:10,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 06:27: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.160s +2025-10-02 06:27:10,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:27:10,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:10,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56528 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58326 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58342 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51560 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:3836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14615 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:27:11,342 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:27:11,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:27:11,383 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +2025-10-02 06:27:11,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.259s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +2025-10-02 06:27:11,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.259s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:27:11,602 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:3837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51561 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:11,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 06:27:11,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 06:27:11,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.140s +2025-10-02 06:27:11,909 - 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 06:27:11,910 - 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 06:27:11,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14616 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58352 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:62708 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58364 - "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 06:27:12,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 06:27:12,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 06:27:12,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.151s +2025-10-02 06:27:12,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:27:12,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:12,819 - 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: 127.0.0.1:36876 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:13,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 06:27:13,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 06:27:13,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.153s +2025-10-02 06:27:14,012 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:27:14,012 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:14,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36880 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36892 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36902 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:53484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:3841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53901 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:16,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 06:27:16,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 06:27:16,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.163s +2025-10-02 06:27:17,013 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:27:17,013 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:17,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36924 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:27:17,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 06:27:17,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 06:27:17,867 - app.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 06:27:18,076 - 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 06:27:18,076 - 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 06:27:18,076 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:53485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:3842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50312 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36930 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:18,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 06:27:18,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 06:27:18,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.140s +2025-10-02 06:27:18,381 - 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 06:27:18,381 - 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 06:27:18,381 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53902 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:18,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 06:27:18,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 06:27:18,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.141s +2025-10-02 06:27:18,670 - 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 06:27:18,671 - 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 06:27:18,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50313 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36940 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36948 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36952 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36956 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:58034 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:21,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 06:27:21,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 06:27:21,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.165s +2025-10-02 06:27:21,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:27:21,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:21,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:58035 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:3846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27: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 06:27:22,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 06:27:22,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.147s +2025-10-02 06:27:22,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:27:22,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:22,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50318 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36964 - "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 06:27:22,997 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:27:22,998 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:27:23,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.148s +2025-10-02 06:27:23,147 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:27:23,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:23,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56542 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39932 - "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 06:27:24,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 06:27:24,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 06:27:24,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.164s +2025-10-02 06:27:24,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 06:27:24,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:24,317 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56543 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9562 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:27:24,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 06:27:24,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 06:27:24,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.142s +2025-10-02 06:27:25,111 - 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 06:27:25,111 - 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 06:27:25,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9563 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39940 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:25,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 06:27:25,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 06:27:25,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.137s +2025-10-02 06:27:25,394 - 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 06:27:25,394 - 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 06:27:25,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:53491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:59735 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39954 - "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 06:27:26,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 06:27:26,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 06:27:26,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 06:27:26,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 06:27:26,295 - 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 06:27:26,296 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39962 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39976 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:39986 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:27:27,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 06:27:27,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 06:27:27,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.155s +2025-10-02 06:27:28,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:27:28,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:28,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:3855 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39994 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27: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 06:27:28,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 06:27:28,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.157s +2025-10-02 06:27:29,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:27:29,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 06:27:29,109 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56550 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40000 - "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 06:27:29,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 06:27:29,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 06:27:29,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.153s +2025-10-02 06:27:29,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:27:29,427 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:29,427 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3856 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:29,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 06:27:29,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 06:27:29,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.162s +2025-10-02 06:27:29,920 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:27:29,921 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:29,921 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9568 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40014 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40016 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50325 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40034 - "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 06:27:32,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 06:27:32,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 06:27:32,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.159s +2025-10-02 06:27:32,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:27:32,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:32,455 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50326 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40046 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40054 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:3860 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49706 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:34,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 06:27:34,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 06:27:34,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.157s +2025-10-02 06:27:34,602 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:27:34,602 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:34,602 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3861 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49722 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:60044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49738 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49750 - "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 06:27:36,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 06:27:36,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 06:27:36,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.150s +2025-10-02 06:27:36,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:27:36,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:36,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53912 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:61954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:27:37,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 06:27:37,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 06:27:37,073 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.247s +2025-10-02 06:27:37,277 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.247s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.247s (avg: 0.124s/image) +2025-10-02 06:27:37,278 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.247s (avg: 0.124s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:27:37,278 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53913 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:61955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49762 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:3865 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49770 - "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 06:27: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 06:27: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 06:27:38,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.156s +2025-10-02 06:27:38,869 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:27:38,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:38,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49780 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49784 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49802 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49816 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49832 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50333 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:60208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:42,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 06:27:42,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 06:27:42,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.145s +2025-10-02 06:27:42,808 - 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 06:27:42,808 - 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 06:27:42,808 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50334 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:43,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 06:27:43,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 06:27:43,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.147s +2025-10-02 06:27:43,226 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:27:43,226 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:43,226 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49842 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:62770 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:43,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 06:27:43,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 06:27:43,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.148s +2025-10-02 06:27:44,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:27:44,115 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:44,115 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62771 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:3870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52912 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:61960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:27:44,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 06:27:44,667 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:27:44,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.262s +2025-10-02 06:27:44,929 - 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 06:27:44,930 - 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 06:27:44,930 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:3871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:61961 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52934 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51598 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52942 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:46,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 06:27:46,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 06:27:47,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.186s +2025-10-02 06:27:47,151 - 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 06:27:47,151 - 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 06:27:47,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51599 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52952 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:48,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 06:27:48,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 06:27:48,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 06:27:48,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 06:27:48,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:48,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52962 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52964 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52966 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62959 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:27:49,971 - 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 06:27:49,998 - 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.536 +2025-10-02 06:27:50,085 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.536 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:27:50,085 - 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 06:27:50,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:62960 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52974 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:51,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 06:27:51,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 06:27:51,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.152s +2025-10-02 06:27:51,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:27:51,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:51,254 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10470 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51603 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52986 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53000 - "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 06:27:52,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 06:27:52,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 06:27:52,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 06:27:52,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 06:27:52,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 06:27:52,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51604 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53010 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:62964 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43148 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:27:53,780 - 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 06:27:53,803 - 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=52.938 +2025-10-02 06:27:53,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=52.938 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 06:27:53,896 - 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 06:27:53,897 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 61.255.207.212:62965 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:43156 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43164 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10475 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:62787 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43178 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:56,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 06:27:56,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 06:27:56,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 06:27:56,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:27:56,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:56,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10476 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:27:56,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 06:27:56,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 06:27:56,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.147s +2025-10-02 06:27:56,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:27:56,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:27:56,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62788 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43188 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62971 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43204 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43206 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:43222 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:27:57,862 - 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 06:27:57,895 - 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=217.780 +2025-10-02 06:27:57,984 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=217.780 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:27:57,984 - 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 06:27:57,986 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:62972 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:43232 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43248 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43260 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43264 - "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 06:28:01,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 06:28:01,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 06:28:01,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.163s +2025-10-02 06:28:01,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:28:01,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:01,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43266 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43272 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55496 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:62813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:04,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 06:28:04,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 06:28:04,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.178s +2025-10-02 06:28:04,344 - 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 06:28:04,345 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:04,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55506 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:05,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 06:28:05,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 06:28:05,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.151s +2025-10-02 06:28:05,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:28:05,245 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:05,245 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55510 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:50283 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28: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 06:28:06,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 06:28:06,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.153s +2025-10-02 06:28:06,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:28:06,934 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:06,934 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50284 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55512 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55520 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:62978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88: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 06:28:07,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 06:28:07,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 06:28:07,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.165s +2025-10-02 06:28:08,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 06:28:08,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 06:28:08,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:62979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55524 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28: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 06:28: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 06:28:08,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.164s +2025-10-02 06:28:08,625 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:28:08,626 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:08,626 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51618 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55534 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55552 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56577 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55558 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:11,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 06:28:11,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 06:28:11,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.167s +2025-10-02 06:28:11,394 - 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 06:28:11,394 - 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 06:28:11,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56578 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55572 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51622 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55588 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55600 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56996 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:62822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57004 - "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 06:28:15,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 06:28:15,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 06:28:15,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.172s +2025-10-02 06:28:15,691 - 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 06:28:15,691 - 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 06:28:15,691 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57010 - "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 06:28:16,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 06:28:16,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 06:28:16,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 06:28:16,380 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:28:16,380 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:16,380 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57016 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:55816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57020 - "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 06:28:18,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 06:28:18,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 06:28:18,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.150s +2025-10-02 06:28:18,346 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:28:18,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:18,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57030 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57032 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57056 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28: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 06:28:21,714 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.405 +2025-10-02 06:28:21,794 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=88.405 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 06:28:21,794 - 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 06:28:21,796 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 175.119.234.181:10485 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57066 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47496 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47508 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47520 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47530 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:62831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:61091 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:26,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 06:28:26,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 06:28:26,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.142s +2025-10-02 06:28:26,297 - 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 06:28:26,298 - 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 06:28:26,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:62832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:26,370 - 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 06:28:26,391 - 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=68.157 +2025-10-02 06:28:26,474 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.157 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:28:26,474 - 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 06:28:26,475 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 211.197.218.214:61092 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47532 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47546 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47556 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47568 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47580 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:47582 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:55821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:30,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 06:28:30,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 06:28:30,602 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:28:30,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:28:30,721 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:30,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55822 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47592 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47608 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47628 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:32884 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32896 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:61124 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:34,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 06:28:34,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 06:28:34,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.156s +2025-10-02 06:28:34,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 06:28:34,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:34,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61125 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32904 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32908 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56588 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:36,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 06:28:36,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=62.649 +2025-10-02 06:28:36,274 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.649 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 06:28:36,275 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:28:36,276 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:56589 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:32924 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9653 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:37,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 06:28: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 06:28:37,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.167s +2025-10-02 06:28:37,765 - 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 06:28:37,765 - 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 06:28:37,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9654 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32936 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:37,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 06:28:37,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 06:28:37,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.148s +2025-10-02 06:28:38,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:28:38,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:38,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49: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 06:28:38,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 06:28:38,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 06:28: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.151s +2025-10-02 06:28:38,714 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:28:38,714 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:38,714 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:58043 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32942 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56593 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:39,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:39,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=42.259 +2025-10-02 06:28:39,859 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=42.259 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:28:39,860 - 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 06:28:39,861 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:56594 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:32954 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32968 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:32976 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:61147 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:41,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 06:28:41,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 06:28:41,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 06:28:42,004 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:28:42,005 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:42,005 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61148 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32980 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:43,041 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:43,066 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=91.841 +2025-10-02 06:28:43,152 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.841 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:28:43,152 - 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 06:28:43,153 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:56601 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:32984 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32988 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41862 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41864 - "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 06:28:45,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 06:28:45,252 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:28:45,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.150s +2025-10-02 06:28:45,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 06:28:45,403 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:45,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41880 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41888 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41904 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9658 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28: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 06:28:47,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 06:28:47,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:28:48,087 - 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 06:28:48,088 - 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 06:28:48,088 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:61198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41916 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63016 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:48,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 06:28:48,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 06:28:48,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.141s +2025-10-02 06:28:48,650 - 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 06:28:48,650 - 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 06:28:48,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61199 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28: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 06:28: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 06:28:48,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.135s +2025-10-02 06:28:49,067 - 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 06:28:49,067 - 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 06:28:49,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63017 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41928 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:28:49,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 06:28:49,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 06:28:49,697 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:28:49,810 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:28:49,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 06:28:49,810 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56606 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41932 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41946 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41960 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41962 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:52,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 06:28:52,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 06:28:52,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.159s +2025-10-02 06:28:53,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:28:53,014 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:53,014 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:53,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 06:28:53,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 06:28:53,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.135s +2025-10-02 06:28:53,319 - 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 06:28:53,319 - 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 06:28:53,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41970 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47834 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:55830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:54,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 06:28:54,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 06:28:54,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.133s +2025-10-02 06:28:54,950 - 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 06:28:54,950 - 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 06:28:54,951 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:55,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 06:28:55,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 06:28:55,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.138s +2025-10-02 06:28:55,354 - 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 06:28:55,354 - 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 06:28:55,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47844 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47852 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13120 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28:55,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 06:28:55,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 06:28:55,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.135s +2025-10-02 06:28:55,923 - 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 06:28:55,923 - 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 06:28:55,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13121 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:61365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:28: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 06:28: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 06:28:56,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.151s +2025-10-02 06:28:56,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:28:56,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:28:56,513 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61366 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47870 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47882 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47890 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:28:59,222 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:28:59,247 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.001 +2025-10-02 06:28:59,327 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=59.001 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 06:28:59,328 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:28:59,329 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 220.77.167.192:53920 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47904 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47916 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:13128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14689 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:00,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 06:29:00,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 06:29:00,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.167s +2025-10-02 06:29:00,813 - 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 06:29:00,813 - 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 06:29:00,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:00,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 06:29:00,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 06:29:01,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.137s +2025-10-02 06:29:01,110 - 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 06:29:01,110 - 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 06:29:01,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14690 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47936 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47950 - "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 06:29:01,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 06:29:01,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 06:29:01,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.147s +2025-10-02 06:29:01,817 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:29:01,817 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:01,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47964 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47966 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54580 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:52948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:04,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 06:29:04,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 06:29:04,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.160s +2025-10-02 06:29:04,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 06:29:04,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 06:29:04,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54592 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:29:04,989 - 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 06:29:05,011 - 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=67.287 +2025-10-02 06:29:05,090 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.287 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:29:05,091 - 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 06:29:05,092 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 220.77.167.192:52949 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:54604 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50386 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:06,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 06:29:06,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 06:29:06,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.160s +2025-10-02 06:29:06,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:29:06,408 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:06,408 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50387 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54620 - "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 06:29:06,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 06:29:06,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 06:29:06,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.146s +2025-10-02 06:29:07,019 - 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 06:29:07,019 - 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 06:29:07,019 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51639 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54642 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54648 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54652 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:09,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 06:29:09,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 06:29:09,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.145s +2025-10-02 06:29:09,963 - 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 06:29:09,964 - 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 06:29:09,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:29:10,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 06:29:10,173 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:29:10,227 - app.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 06:29:10,454 - 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 06:29:10,454 - 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 06:29:10,454 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:61666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54662 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:10,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 06:29:10,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 06:29: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.152s +2025-10-02 06:29:11,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 06:29:11,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:11,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54666 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54678 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50344 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50350 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50354 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50398 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50358 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:16,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 06:29:16,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 06:29:16,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.165s +2025-10-02 06:29:16,171 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:29:16,171 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:16,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50399 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11316 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29: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 06:29:16,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 06:29:16,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.136s +2025-10-02 06:29:16,617 - 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 06:29:16,617 - 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 06:29:16,617 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50364 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:16,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 06:29:16,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 06:29:16,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.146s +2025-10-02 06:29:16,932 - 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 06:29:16,932 - 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 06:29:16,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11317 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53928 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:61834 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51647 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50380 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:29:17,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 06:29:17,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 06:29:17,402 - app.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 06:29:17,615 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.257s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +2025-10-02 06:29:17,616 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.257s (avg: 0.129s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:29:17,616 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53929 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:61839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50396 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:18,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 06:29:18,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 06:29:18,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.161s +2025-10-02 06:29:18,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 06:29:18,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 06:29:18,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50410 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50412 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50422 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50403 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:20,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 06:29:20,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:20,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.151s +2025-10-02 06:29:20,639 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:29:20,640 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:20,640 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50404 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50434 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:50293 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:21,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 06:29:21,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 06:29:21,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 06:29:22,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:29:22,106 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:22,106 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56626 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:22,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 06:29:22,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 06:29:22,317 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +2025-10-02 06:29:22,435 - 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 06:29:22,435 - 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 06:29:22,435 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50294 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:23,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 06:29:23,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 06:29:23,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.152s +2025-10-02 06:29:23,695 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:29:23,696 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:23,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38738 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38740 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:62073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:24,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 06:29:24,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 06:29:24,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.170s +2025-10-02 06:29:24,828 - 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 06:29:24,829 - 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 06:29:24,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38746 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:24,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 06:29:24,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 06:29:25,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.162s +2025-10-02 06:29:25,161 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:29:25,162 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:25,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:25,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 06:29:25,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 06:29:25,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.131s +2025-10-02 06:29:25,441 - 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 06:29:25,441 - 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 06:29:25,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51653 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38752 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38766 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:26,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 06:29:26,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 06:29:26,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.155s +2025-10-02 06:29:27,024 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:29:27,025 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:27,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38776 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63980 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:29:27,337 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:29:27,338 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:29:27,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.280s +2025-10-02 06:29:27,618 - 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 06:29:27,618 - 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 06:29:27,619 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:56631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11332 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:27,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 06:29:27,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 06:29:27,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.154s +2025-10-02 06:29:27,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:29:27,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:27,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38792 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:28,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 06:29:28,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 06:29:28,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.149s +2025-10-02 06:29:28,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:29:28,406 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:28,406 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38814 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38816 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:38822 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38834 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:62289 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:29:31,656 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:29:31,657 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:29:31,718 - app.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 06:29:31,955 - 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 06:29:31,955 - 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 06:29:31,956 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:56638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:62290 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38850 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:32,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 06:29:32,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 06:29:32,715 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:29:32,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 06:29:32,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 06:29:32,833 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38858 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38862 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55134 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50419 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:34,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 06:29:34,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 06:29:34,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.162s +2025-10-02 06:29:34,715 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:29:34,715 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:34,715 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50420 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55150 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55174 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11344 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:29:36,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:29:36,559 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.929 +2025-10-02 06:29:36,639 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.929 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 06:29:36,640 - 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 06:29:36,641 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 39.112.59.88:51660 - "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 06:29:36,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 06:29:36,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 06:29:36,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.152s +2025-10-02 06:29:36,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:29:36,932 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:36,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11345 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:62458 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:37,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 06:29:37,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 06:29:37,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.173s +2025-10-02 06:29:37,823 - 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 06:29:37,824 - 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 06:29:37,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55196 - "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 06:29:38,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 06:29:38,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 06:29:38,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.161s +2025-10-02 06:29:38,549 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:29:38,550 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:38,550 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55222 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55232 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:11349 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55248 - "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 06:29:41,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 06:29:41,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 06:29:41,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.166s +2025-10-02 06:29:41,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:29:41,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:41,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:29:41,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 06:29:41,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 06:29:42,015 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:29:42,135 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:29:42,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:42,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55258 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55270 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55272 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:43,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 06:29:43,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 06:29:43,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.148s +2025-10-02 06:29:43,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 06:29:43,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 06:29:43,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:62669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:62958 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59500 - "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 06:29:44,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 06:29:44,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 06:29:44,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.165s +2025-10-02 06:29:44,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 06:29:44,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:44,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:29:44,691 - 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 06:29:44,712 - 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=220.813 +2025-10-02 06:29:44,791 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=220.813 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:29:44,792 - 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 06:29:44,792 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 211.226.69.49:62959 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:59510 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59524 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:45,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 06:29:45,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 06:29:45,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.158s +2025-10-02 06:29:46,025 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:29:46,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 06:29:46,025 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:11354 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59542 - "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 06:29:47,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 06:29:47,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 06:29:47,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.158s +2025-10-02 06:29:47,631 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:29:47,631 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:47,631 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11355 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59548 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59554 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:62850 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:49,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 06:29:49,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 06:29:49,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.150s +2025-10-02 06:29:49,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:29:49,850 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:49,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62851 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56661 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:50,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 06:29:50,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 06:29:50,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.158s +2025-10-02 06:29:50,321 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:29:50,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:50,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56662 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59570 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59572 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59580 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:62966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:29:51,823 - 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 06:29:51,845 - 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=104.017 +2025-10-02 06:29:51,915 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.017 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.070s +2025-10-02 06:29:51,916 - 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 06:29:51,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.071s +INFO: 211.226.69.49:62967 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:11365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:52,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 06:29:52,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 06:29:52,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.168s +2025-10-02 06:29:52,599 - 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 06:29:52,599 - 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 06:29:52,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11366 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59584 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59588 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49064 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:63012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49080 - "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 06:29:54,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 06:29:54,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 06:29:54,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 06:29:54,854 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:29:54,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:54,855 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56667 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:55,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 06:29:55,024 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:29:55,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.155s +2025-10-02 06:29:55,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:29:55,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:55,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:63013 - "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 1 jobs. +2025-10-02 06:29:55,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 06:29:55,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 06:29:55,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.150s +2025-10-02 06:29:55,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:29:55,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:55,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49100 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49122 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49134 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56673 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:29:59,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 06:29:59,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 06:29:59,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 06:29:59,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:29:59,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:29:59,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56674 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49142 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49150 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:49160 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:30:01,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 06:30:01,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 06:30:01,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.152s +2025-10-02 06:30:01,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:30:01,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 06:30:01,345 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49170 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49174 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:03,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 06:30:03,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 06:30:03,760 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:30: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 06:30:03,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:03,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52440 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52442 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52446 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:63345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52456 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:06,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 06:30:06,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 06:30:06,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.165s +2025-10-02 06:30:06,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:30:06,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:06,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:63346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52458 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:07,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 06:30:07,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 06:30:07,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.163s +2025-10-02 06:30:07,966 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:30:07,966 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:07,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52470 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52476 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52482 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:09,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 06:30:09,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 06:30:09,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.157s +2025-10-02 06:30:10,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:30:10,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:10,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:52981 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52498 - "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 06:30:10,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 06:30:10,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 06:30:10,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.148s +2025-10-02 06:30:10,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:30:10,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:10,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52982 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52506 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:11,634 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:11,656 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.628 +2025-10-02 06:30:11,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.628 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:30:11,732 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.075s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.078s +2025-10-02 06:30:11,734 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:63996 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52508 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:63530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:30:12,627 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:30:12,628 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:12,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.305s +2025-10-02 06:30:12,933 - 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 06:30:12,934 - 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 06:30:12,934 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:63531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52520 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52522 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51682 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:14,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 06:30:14,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 06:30:14,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 06:30:14,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:30:14,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:14,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51683 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44162 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:50434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:16,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 06:30:16,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 06:30:16,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.160s +2025-10-02 06:30:16,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:30:16,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:16,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44170 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44186 - "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 06:30:16,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 06:30:16,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 06:30:16,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.159s +2025-10-02 06:30:16,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:30:16,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:16,774 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:55892 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53944 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:17,179 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:17,209 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.806 +2025-10-02 06:30:17,294 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=150.806 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:30:17,294 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:30:17,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:64001 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:44202 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:63685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:17,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 06:30:17,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 06:30:17,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.147s +2025-10-02 06:30:17,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:30:17,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:17,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55893 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:30:17,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 06:30:17,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 06:30:17,928 - app.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 06:30:18,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 06:30:18,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 06:30:18,155 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53945 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:63686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44216 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44232 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44238 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:52989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:19,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 06:30:19,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 06:30:19,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.167s +2025-10-02 06:30:20,010 - 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 06:30:20,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 06:30:20,010 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44240 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51688 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:21,118 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:30:21,139 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=198.626 +2025-10-02 06:30:21,217 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=198.626 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:30:21,218 - 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 06:30:21,218 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:64006 - "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 06:30:21,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 06:30:21,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 06:30:21,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.147s +2025-10-02 06:30:21,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:30:21,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:21,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44250 - "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 06:30:21,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 06:30:21,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 06:30:21,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.172s +2025-10-02 06:30:22,032 - 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 06:30:22,032 - 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 06:30:22,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51689 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44258 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44262 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37776 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37784 - "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 06:30:25,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 06:30:25,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 06:30:25,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.163s +2025-10-02 06:30:25,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:30:25,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:25,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37790 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37798 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:55899 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:26,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 06:30:26,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 06:30:26,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.161s +2025-10-02 06:30:26,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:30:26,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:26,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55900 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37802 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:27,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 06:30:27,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 06:30:27,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 06:30:27,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:30:27,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:27,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:63967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:52994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:28,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 06:30:28,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 06:30:29,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.159s +2025-10-02 06:30:29,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:30:29,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 06:30:29,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:52995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37820 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37828 - "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 06:30: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 06:30: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 06:30:29,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.149s +2025-10-02 06:30: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 06:30: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 06:30:29,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:63970 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:30:29,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 06:30:29,718 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:29,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.272s +2025-10-02 06:30:29,990 - 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 06:30:29,990 - 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 06:30:29,991 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:51694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37830 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37836 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:30,844 - 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 06:30:30,873 - 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=49.479 +2025-10-02 06:30:30,965 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=49.479 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:30:30,965 - 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 06:30:30,967 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 175.119.234.181:14760 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:63060 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37850 - "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 06:30:31,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 06:30:31,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 06:30:31,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.163s +2025-10-02 06:30:31,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:30:31,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:31,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:31,654 - 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 06:30:31,672 - 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=79.638 +2025-10-02 06:30:31,752 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.638 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 06:30:31,752 - 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 06:30:31,753 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:63061 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:37852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37862 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37878 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:63984 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46748 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9716 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:34,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:30:34,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 06:30:34,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.186s +2025-10-02 06:30:34,938 - 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 06:30:34,938 - 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 06:30:34,938 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:63985 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46758 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46764 - "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 06:30:35,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 06:30:35,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 06:30:35,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.166s +2025-10-02 06:30:35,470 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:30:35,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:35,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9717 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:35,657 - 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 06:30:35,676 - 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=74.391 +2025-10-02 06:30:35,762 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.391 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:30:35,762 - 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 06:30:35,762 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:63066 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:51698 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:50302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46778 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:36,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 06:30:36,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 06:30: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.144s +2025-10-02 06:30:36,802 - 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 06:30:36,803 - 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 06:30:36,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:36,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 06:30:36,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 06:30:36,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.154s +2025-10-02 06:30:37,106 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:30:37,107 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:37,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51699 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46794 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:50259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:37,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 06:30:37,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 06:30:37,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.151s +2025-10-02 06:30:37,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:30:37,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:37,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46800 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53959 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:30:39,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 06:30:39,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 06:30:39,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.172s +2025-10-02 06:30:39,492 - 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 06:30:39,492 - 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 06:30:39,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53960 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46816 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:30:39,549 - 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 06:30:39,567 - 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=112.655 +2025-10-02 06:30:39,639 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.655 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.071s +2025-10-02 06:30:39,640 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.071s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.073s +2025-10-02 06:30:39,640 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +INFO: 61.255.207.212:63073 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:46818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14772 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53006 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:30:41,077 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:30:41,078 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:41,138 - app.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 06:30:41,380 - 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 06:30:41,381 - 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 06:30:41,381 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:63037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53007 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46826 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46842 - "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 06:30:41,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 06:30:41,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 06:30:41,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.155s +2025-10-02 06:30:41,819 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:30:41,819 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:41,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14773 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51703 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:42,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 06:30:42,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 06:30:42,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.165s +2025-10-02 06:30:42,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:30:42,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:42,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51704 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46854 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46858 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:64015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30: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 06:30:43,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 06:30:43,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.173s +2025-10-02 06:30:44,041 - 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 06:30:44,041 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.173s (avg: 0.173s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:44,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64016 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56064 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56076 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:50264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:45,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 06:30:45,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 06:30:45,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 06:30:45,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:30:45,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 06:30:45,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56088 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56100 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56110 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51708 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56112 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30: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 06:30:48,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 06:30:48,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.173s +2025-10-02 06:30:48,466 - 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 06:30:48,466 - 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 06:30:48,467 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51709 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14782 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:48,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 06:30:48,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 06:30:48,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.168s +2025-10-02 06:30:48,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 06:30:48,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 06:30:48,815 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56122 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:48,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 06:30:48,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 06:30:49,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.171s +2025-10-02 06:30:49,161 - 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 06:30:49,161 - 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 06:30:49,162 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:64130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56136 - "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 06:30:49,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 06:30:49,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 06:30:49,575 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:30:49,701 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:30:49,701 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:49,701 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56142 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56148 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56178 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:50269 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:30:53,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 06:30:53,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 06:30:53,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.155s +2025-10-02 06:30:53,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 06:30:53,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 06:30:53,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50270 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40618 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40628 - "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 06:30:54,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 06:30:54,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 06:30:54,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.173s +2025-10-02 06:30:54,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 06:30:54,204 - 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 06:30:54,204 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40652 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40654 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:64338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40662 - "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 06:30:57,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 06:30:57,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 06:30:57,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.164s +2025-10-02 06:30:57,351 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:30:57,351 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:30:57,351 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:30:57,811 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:30:57,812 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:30:57,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.298s +2025-10-02 06:30:58,110 - 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 06:30:58,111 - 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 06:30:58,111 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53018 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40666 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40676 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40684 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40692 - "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 06:31:00,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 06:31:00,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 06:31:00,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.162s +2025-10-02 06:31:00,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:31:00,852 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:00,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40696 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40706 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:40710 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:50283 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:02,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 06:31:02,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 06:31:02,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.156s +2025-10-02 06:31:02,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:31:02,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:02,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50284 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:64488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:02,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 06:31:02,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 06:31: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.168s +2025-10-02 06:31:02,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +2025-10-02 06:31:02,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.168s (avg: 0.168s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:02,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40720 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40730 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63104 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35722 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:04,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 06:31:04,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 06:31:04,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.169s +2025-10-02 06:31:04,849 - 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 06:31:04,850 - 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 06:31:04,850 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35734 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64027 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:05,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 06:31:05,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 06:31:05,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.172s +2025-10-02 06:31:05,697 - 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 06:31:05,697 - 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 06:31:05,697 - 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:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:05,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 06:31:05,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 06:31:05,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.147s +2025-10-02 06:31:06,044 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:31:06,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 06:31:06,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64028 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35736 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35746 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35762 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:64669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:07,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 06:31:07,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 06:31:07,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 06:31:08,080 - 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 06:31:08,080 - 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 06:31:08,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35768 - "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 06:31:08,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 06:31:08,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 06:31:08,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.163s +2025-10-02 06:31:09,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:31:09,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:09,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64672 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35778 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35792 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14802 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31: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 06:31:10,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 06:31:10,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.168s +2025-10-02 06:31:10,522 - 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 06:31:10,522 - 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 06:31:10,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14803 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35800 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35816 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35832 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:13,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 06:31:13,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 06:31:13,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.141s +2025-10-02 06:31:13,149 - 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 06:31:13,149 - 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 06:31:13,149 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:64839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50556 - "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 06:31:15,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 06:31:15,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 06:31:15,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.170s +2025-10-02 06:31:15,336 - 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 06:31:15,336 - 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 06:31:15,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14808 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:15,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 06:31:15,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 06:31:15,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.176s +2025-10-02 06:31:15,958 - 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 06:31:15,958 - 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 06:31:15,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14809 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:16,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 06:31:16,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 06:31:16,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.143s +2025-10-02 06:31:16,329 - 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 06:31:16,329 - 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 06:31:16,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50596 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50610 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50624 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63096 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:31:20,238 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:31:20,239 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:31:20,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.283s +2025-10-02 06:31:20,523 - 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 06:31:20,523 - 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 06:31:20,523 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63097 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63128 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50642 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9759 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:20,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 06:31: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 06:31:20,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.139s +2025-10-02 06:31:20,973 - 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 06:31:20,973 - 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 06:31:20,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9760 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50652 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50660 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50664 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:65125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:24,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 06:31:24,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 06:31: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.170s +2025-10-02 06:31:24,283 - 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 06:31:24,284 - 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 06:31:24,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57926 - "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 06:31:24,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 06:31:24,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 06:31:24,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.161s +2025-10-02 06:31:24,805 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:31:24,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:24,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64039 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:31:25,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:25,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 06:31:25,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.160s +2025-10-02 06:31:25,320 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:31:25,321 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:25,321 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63104 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57940 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57948 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57958 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:26,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 06:31:26,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 06:31:26,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 06:31:26,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:31:26,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:26,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64040 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:26,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 06:31:26,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 06:31:26,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.166s +2025-10-02 06:31:27,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:31:27,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:27,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57964 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:28,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 06:31:28,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 06:31:28,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.163s +2025-10-02 06:31:28,207 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:31:28,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:28,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57970 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57980 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57990 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:29,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 06:31:29,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 06:31:29,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.158s +2025-10-02 06:31:29,711 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:31:29,711 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:29,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:65292 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31: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 06:31: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 06:31: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.169s +2025-10-02 06:31:30,294 - 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 06:31:30,294 - 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 06:31:30,294 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65293 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57998 - "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 06:31:30,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 06:31:30,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 06:31:30,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.163s +2025-10-02 06:31:30,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:31:30,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:30,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58008 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58014 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:58020 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88: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 06:31:31,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 06:31:31,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 06:31:31,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.163s +2025-10-02 06:31:31,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:31:31,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:31,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:32,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 06:31:32,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 06:31:32,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.154s +2025-10-02 06:31:32,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 06:31:32,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 06:31:32,598 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54003 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:32,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 06:31:32,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 06:31: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.162s +2025-10-02 06:31:33,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 06:31:33,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:33,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58036 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47948 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47958 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47974 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47988 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64049 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47992 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:37,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 06:31:37,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 06:31:37,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.150s +2025-10-02 06:31:37,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:31:37,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:37,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64050 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47994 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51746 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:38,423 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:38,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 06:31:38,457 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:31:38,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 06:31:38,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 06:31:38,575 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51747 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:38,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 06:31:38,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 06:31:38,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.160s +2025-10-02 06:31:38,899 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:31:38,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:38,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48014 - "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 06:31:39,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 06:31:39,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 06:31:39,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.156s +2025-10-02 06:31:39,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 06:31:39,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 06:31:39,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14840 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:50489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53055 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:31:40,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 06:31:40,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 06:31:40,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.139s +2025-10-02 06:31:40,444 - 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 06:31:40,445 - 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 06:31:40,445 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:31:40,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 06:31:40,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 06:31:40,656 - app.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 06:31:40,893 - 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 06:31:40,894 - 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 06:31:40,894 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:54009 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53056 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48020 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48036 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:49237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:41,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 06:31:41,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 06:31:41,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.169s +2025-10-02 06:31:41,583 - 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 06:31:41,584 - 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 06:31:41,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:49238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48044 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51751 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64054 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:43,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 06:31:43,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 06:31:43,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.160s +2025-10-02 06:31:43,744 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:31:43,745 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:43,745 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51752 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59250 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59258 - "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 06:31:44,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 06:31:44,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 06:31:44,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.143s +2025-10-02 06:31:44,156 - 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 06:31:44,156 - 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 06:31:44,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64055 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11413 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14850 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:31:44,893 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:31:44,894 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:31:44,965 - app.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 06:31:45,196 - 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 06:31:45,197 - 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 06:31:45,197 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:11414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14851 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59274 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50494 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59286 - "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 06:31:46,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 06:31:46,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 06:31:46,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.157s +2025-10-02 06:31:46,164 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:31:46,164 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:46,165 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50495 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59296 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63267 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59298 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:31:47,448 - 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 06:31:47,474 - 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.210 +2025-10-02 06:31:47,575 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=20.210 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.100s +2025-10-02 06:31:47,575 - 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 06:31:47,577 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.104s +INFO: 175.119.234.181:63268 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:59308 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59316 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51756 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:49,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 06:31:49,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 06:31:49,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.134s +2025-10-02 06:31:49,491 - 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 06:31:49,491 - 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 06:31:49,492 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:49,677 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:49,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 06:31:49,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.139s +2025-10-02 06:31:49,817 - 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 06:31:49,817 - 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 06:31:49,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51757 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59330 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59344 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59360 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:50314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59368 - "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 06:31:52,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 06:31:52,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 06:31:52,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.148s +2025-10-02 06:31:52,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:31:52,276 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:52,276 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31: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 06:31: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 06:31:52,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.159s +2025-10-02 06:31:52,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 06:31:52,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 06:31:52,606 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59374 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59382 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:54,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 06:31:54,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 06:31:54,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.165s +2025-10-02 06:31:54,185 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:31:54,185 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:54,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37208 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:54,434 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:31:54,434 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:31:54,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.143s +2025-10-02 06:31:54,578 - 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 06:31:54,578 - 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 06:31:54,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37220 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37222 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64068 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37230 - "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 06:31:56,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 06:31:56,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 06:31:56,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.158s +2025-10-02 06:31:56,885 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:31:56,886 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:31:56,886 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37246 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37252 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37254 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37262 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:31:59,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 06:31:59,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 06:32:00,022 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:32:00,134 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:32:00,134 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:32:00,134 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:00,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 06:32:00,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 06:32:00,290 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 06:32:00,398 - 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 06:32:00,399 - 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 06:32:00,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37278 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37294 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:63274 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:01,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 06:32:01,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 06:32:01,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.156s +2025-10-02 06:32:01,856 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:32:01,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 06:32:01,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63275 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37310 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37324 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:37330 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41196 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:50515 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41210 - "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 06:32:04,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 06:32:04,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 06:32:04,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.169s +2025-10-02 06:32:04,456 - 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 06:32:04,457 - 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 06:32:04,457 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50516 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41224 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41228 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:05,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 06:32:05,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 06:32:06,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.181s +2025-10-02 06:32:06,144 - 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 06:32:06,144 - 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 06:32:06,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:06,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 06:32:06,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 06:32:06,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.155s +2025-10-02 06:32:06,570 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:32:06,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 06:32:06,571 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7941 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41236 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41250 - "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 06:32:07,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 06:32:07,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 06:32: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.145s +2025-10-02 06:32:07,589 - 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 06:32:07,590 - 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 06:32:07,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64079 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41252 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41262 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41268 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7948 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41276 - "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 06:32:10,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 06:32:10,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 06:32:10,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.157s +2025-10-02 06:32:10,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:32:10,803 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:32:10,803 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7949 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41278 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:52525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41290 - "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 06:32:12,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 06:32:12,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 06:32:12,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.166s +2025-10-02 06:32:12,366 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:32:12,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:32:12,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41298 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41300 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56753 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:32:14,109 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:32:14,128 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=94.021 +2025-10-02 06:32:14,206 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.021 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 06:32:14,206 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.079s +2025-10-02 06:32:14,207 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:56754 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:59674 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59680 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64083 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59690 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:16,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 06:32:16,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 06:32:16,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.170s +2025-10-02 06:32:16,352 - 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 06:32:16,353 - 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 06:32:16,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64084 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59704 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59714 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:17,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 06:32:17,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 06:32:17,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.148s +2025-10-02 06:32:17,685 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:32:17,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:32:17,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:32:17,722 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:32:17,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=86.485 +2025-10-02 06:32:17,831 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.485 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:32:17,831 - 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 06:32:17,833 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:56759 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:59718 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59730 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:19,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 06:32:19,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 06:32:19,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.166s +2025-10-02 06:32:19,518 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:32:19,519 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:32:19,519 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59740 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:52539 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59750 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59760 - "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 06:32:20,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 06:32:20,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 06:32:21,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.146s +2025-10-02 06:32:21,144 - 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 06:32:21,144 - 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 06:32:21,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52540 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56765 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:32:21,695 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:32:21,726 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=96.655 +2025-10-02 06:32:21,814 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=96.655 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:32:21,814 - 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 06:32:21,816 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:56766 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:59764 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:32:22,019 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:32:22,038 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.260 +2025-10-02 06:32:22,125 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.260 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:32:22,126 - 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 06:32:22,127 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 175.119.234.181:9770 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:53662 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53674 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53686 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53692 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53696 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53702 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53710 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:28,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 06:32:28,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 06:32:28,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.161s +2025-10-02 06:32:28,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:32:28,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:32:28,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7967 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53720 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53728 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53738 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53744 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53764 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:53774 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47758 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47768 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47782 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47798 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47810 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47826 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47842 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47852 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47856 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47858 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47872 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47886 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47890 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41470 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41486 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:32:45,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 06:32:45,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 06:32:45,256 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:32:45,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:32:45,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:32:45,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41490 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41498 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41514 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41518 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41534 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41544 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41552 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41556 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56783 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:51,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 06:32:51,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 06:32:51,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.173s +2025-10-02 06:32:51,514 - 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 06:32:51,514 - 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 06:32:51,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56784 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41574 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:32:52,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 06:32:52,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 06:32: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.144s +2025-10-02 06:32:52,907 - 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 06:32:52,907 - 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 06:32:52,908 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41588 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52232 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52234 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52238 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52252 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52266 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56790 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32:57,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 06:32:57,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 06:32:57,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.145s +2025-10-02 06:32:57,589 - 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 06:32:57,590 - 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 06:32:57,590 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56791 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52280 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52286 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64106 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:32: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 06:32: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 06:32:58,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 06:32: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 06:32: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 06:32:58,929 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64107 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52296 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52302 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52316 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52330 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52342 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52352 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:02,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 06:33:02,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 06:33:02,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.167s +2025-10-02 06:33:02,521 - 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 06:33:02,522 - 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 06:33:02,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52358 - "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 06:33:03,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 06:33:03,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 06:33:03,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.148s +2025-10-02 06:33:03,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 06:33:03,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 06:33:03,404 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:52568 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:03,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 06:33:03,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 06:33:04,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 06:33:04,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:33:04,147 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:04,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52569 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54228 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54230 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56802 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54246 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:05,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 06:33: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 06:33:05,291 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.127s +2025-10-02 06:33:05,399 - 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 06:33:05,399 - 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 06:33:05,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56803 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:05,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 06:33:05,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 06:33:05,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.141s +2025-10-02 06:33:05,899 - 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 06:33:05,899 - 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 06:33:05,899 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:50326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54252 - "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 06:33:06,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 06:33: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 06:33:06,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.165s +2025-10-02 06:33:06,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:33:06,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:06,560 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:50327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54266 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54270 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54272 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54280 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:09,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 06:33:09,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 06:33:10,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.189s +2025-10-02 06:33:10,174 - 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 06:33:10,174 - 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 06:33:10,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54284 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54296 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54306 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:11,930 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:11,930 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:11,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.153s +2025-10-02 06:33:12,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:33:12,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:12,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:52576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54320 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51782 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:12,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 06:33:12,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 06:33:12,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.162s +2025-10-02 06:33:12,802 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:33:12,802 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:12,802 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52577 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:33:13,038 - 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 06:33:13,055 - 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=142.815 +2025-10-02 06:33:13,128 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=142.815 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 06:33:13,129 - 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 06:33:13,129 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 39.112.59.88:51783 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:54332 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54334 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56812 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:13,961 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:33:13,962 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:33:14,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 06:33:14,119 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:33:14,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:14,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37254 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37264 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37266 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37278 - "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 06:33: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 06:33:16,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 06:33: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.152s +2025-10-02 06:33:16,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 06:33:16,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 06:33:16,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37284 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:33:17,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 06:33:17,494 - 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=151.717 +2025-10-02 06:33:17,573 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.717 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 06:33:17,574 - 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 06:33:17,576 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 211.226.69.49:63311 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:37300 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37314 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37324 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37330 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:9801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33: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 06:33:20,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 06:33:20,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.192s +2025-10-02 06:33:21,137 - 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 06:33:21,137 - 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 06:33:21,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:52051 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:21,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 06:33:21,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 06:33:21,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.149s +2025-10-02 06:33:21,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:33:21,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:21,632 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37342 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:33:22,561 - 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 06:33:22,583 - 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.330 +2025-10-02 06:33:22,673 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.330 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:33:22,673 - 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 06:33:22,675 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 211.226.69.49:63320 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:37358 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37372 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:52585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:23,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 06:33:23,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 06:33:23,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.168s +2025-10-02 06:33:23,881 - 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 06:33:23,882 - 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 06:33:23,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52586 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56522 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56528 - "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 06:33:25,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 06:33:25,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 06:33:25,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.154s +2025-10-02 06:33:25,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:33:25,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:25,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63174 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:25,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 06:33:25,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 06:33:25,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.173s +2025-10-02 06:33:25,944 - 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 06:33:25,944 - 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 06:33:25,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56544 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56554 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56568 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64128 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56828 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:27,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 06:33:27,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 06:33:27,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.137s +2025-10-02 06:33:27,727 - 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 06:33:27,727 - 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 06:33:27,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64129 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:27,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 06:33:27,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 06:33:27,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.155s +2025-10-02 06:33:28,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:33:28,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:28,027 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56829 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56580 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:52294 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:52591 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8008 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:29,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 06:33:29,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 06:33:29,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.157s +2025-10-02 06:33:29,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:33:29,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:29,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52295 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56588 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56592 - "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 06:33:29,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 06:33: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 06:33:29,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.142s +2025-10-02 06:33:29,529 - 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 06:33:29,529 - 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 06:33:29,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52592 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:33:29,565 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:33:29,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=83.949 +2025-10-02 06:33:29,668 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.949 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:33:29,668 - 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 06:33:29,669 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 175.119.234.181:8009 - "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 06:33:29,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 06:33:29,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 06:33:29,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.137s +2025-10-02 06:33:30,009 - 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 06:33:30,009 - 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 06:33:30,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56596 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:30,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 06:33:30,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 06:33:30,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.147s +2025-10-02 06:33:30,523 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:33:30,523 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:30,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:31,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 06:33:31,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 06:33:31,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.139s +2025-10-02 06:33:31,402 - 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 06:33:31,402 - 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 06:33:31,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56602 - "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 06:33:32,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 06:33:32,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 06:33:32,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.152s +2025-10-02 06:33:32,299 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:33:32,299 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:32,299 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9815 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56620 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:56634 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45100 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56840 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64138 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9819 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:33:35,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 06:33:35,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:33:35,064 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.287s +2025-10-02 06:33:35,301 - 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 06:33:35,301 - 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 06:33:35,301 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:56841 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64139 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:35,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 06:33:35,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 06:33: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.139s +2025-10-02 06:33:35,613 - 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 06:33:35,613 - 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 06:33:35,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9820 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:33:35,759 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:33:35,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 06:33:35,803 - app.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 06:33:36,011 - 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 06:33:36,012 - 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 06:33:36,012 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45104 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45110 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:52486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:36,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 06:33:36,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 06:33:36,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.151s +2025-10-02 06:33:37,006 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:33:37,007 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:37,007 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:64194 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45118 - "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 06:33:38,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 06:33:38,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 06:33:38,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.180s +2025-10-02 06:33:38,324 - 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 06:33:38,325 - 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 06:33:38,325 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:64195 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45128 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45130 - "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 06:33: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 06:33: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 06:33: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.158s +2025-10-02 06:33:39,476 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:33:39,476 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:39,477 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45138 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:41,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 06:33:41,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 06:33:41,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.179s +2025-10-02 06:33:41,542 - 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 06:33:41,543 - 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 06:33:41,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56849 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:33:41,965 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:33:41,966 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:33:42,024 - app.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 06:33:42,257 - 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 06:33:42,258 - 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 06:33:42,258 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64144 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45148 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45160 - "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 06:33:42,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 06:33:42,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 06:33:42,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.155s +2025-10-02 06:33:42,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:33:42,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:42,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45168 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:52678 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:43,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 06:33:43,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 06:33:44,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.152s +2025-10-02 06:33:44,138 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:33:44,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:44,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52679 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40944 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40956 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64149 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40966 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33: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 06:33: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 06:33:46,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.164s +2025-10-02 06:33:46,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:33:46,621 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:46,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64150 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40978 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63197 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:40992 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41006 - "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 06:33:48,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 06:33:48,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 06:33:48,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.163s +2025-10-02 06:33:48,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:33:48,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:48,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63198 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:52839 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:49,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 06:33:49,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 06:33:49,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.153s +2025-10-02 06:33:49,553 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:33:49,553 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:49,554 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41016 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:49,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 06:33:49,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 06:33:49,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.147s +2025-10-02 06:33:50,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:33:50,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:50,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52840 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64154 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:50,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 06:33:50,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 06:33:50,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.130s +2025-10-02 06:33:50,586 - 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 06:33:50,587 - 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 06:33:50,587 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64155 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41024 - "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 06:33:50,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 06:33:50,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 06:33:50,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.161s +2025-10-02 06:33:50,895 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:33:50,895 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:50,896 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:51,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 06:33:51,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 06:33:51,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.149s +2025-10-02 06:33:51,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:33:51,482 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:51,482 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:51,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 06:33:51,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 06:33: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.133s +2025-10-02 06:33:51,770 - 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 06:33:51,770 - 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 06:33:51,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41046 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41054 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:53,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 06:33: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 06:33:53,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.144s +2025-10-02 06:33:53,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 06:33:53,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 06:33:53,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48328 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48344 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48348 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:55,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 06:33:55,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 06:33:55,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.141s +2025-10-02 06:33:55,386 - 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 06:33:55,386 - 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 06:33:55,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48354 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14935 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:56,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 06:33:56,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 06:33:56,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.152s +2025-10-02 06:33:56,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 06:33:56,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:56,572 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14936 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48362 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:57,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 06:33:57,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 06:33:57,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.152s +2025-10-02 06:33:57,958 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:33:57,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:33:57,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9840 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48366 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48380 - "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 06:33:58,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 06:33:58,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 06:33:58,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.177s +2025-10-02 06:33:58,473 - 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 06:33:58,473 - 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 06:33:58,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9841 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48394 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:33:59,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 06:33:59,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 06:33:59,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.146s +2025-10-02 06:33:59,469 - 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 06:33:59,470 - 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 06:33:59,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48396 - "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 06:34:00,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 06:34:00,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 06:34:00,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.141s +2025-10-02 06:34:01,001 - 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 06:34:01,001 - 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 06:34:01,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9846 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14942 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:01,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 06:34:01,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 06:34:01,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.143s +2025-10-02 06:34:01,565 - 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 06:34:01,565 - 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 06:34:01,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14943 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48408 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48410 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:48424 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:03,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 06:34:03,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 06:34:03,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.143s +2025-10-02 06:34:03,428 - 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 06:34:03,428 - 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 06:34:03,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59912 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59920 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:59922 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:64219 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51812 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59932 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34: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 06:34: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 06:34:05,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.186s +2025-10-02 06:34:06,008 - 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 06:34:06,008 - 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 06:34:06,009 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:64220 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:06,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 06:34:06,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 06:34:06,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.173s +2025-10-02 06:34:06,373 - 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 06:34:06,374 - 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 06:34:06,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59940 - "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 06:34: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 06:34:07,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 06:34:07,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.171s +2025-10-02 06:34:07,261 - 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 06:34:07,261 - 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 06:34:07,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64174 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:07,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 06:34:07,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 06:34:07,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.148s +2025-10-02 06:34:07,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 06:34:07,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 06:34:07,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59946 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59962 - "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 06:34:07,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 06:34:07,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 06:34:08,026 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 06:34:08,137 - 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 06:34:08,138 - 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 06:34:08,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64175 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59972 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:08,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 06:34:08,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 06:34:08,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.163s +2025-10-02 06:34:09,030 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:34:09,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:09,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:09,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 06:34:09,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 06:34:09,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.139s +2025-10-02 06:34:09,357 - 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 06:34:09,357 - 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 06:34:09,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59980 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59982 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59986 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59998 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60008 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:13,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 06:34:13,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 06:34:13,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.168s +2025-10-02 06:34:13,547 - 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 06:34:13,547 - 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 06:34:13,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:14,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 06:34:14,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 06:34:14,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.154s +2025-10-02 06:34:14,334 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:34:14,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:14,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47654 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47666 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47670 - "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 06:34:16,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 06:34:16,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 06:34:16,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.152s +2025-10-02 06:34:16,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:34:16,771 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:16,772 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51822 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47680 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47688 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9101 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:17,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 06:34:17,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 06:34:17,979 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:34:18,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 06:34:18,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:18,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9102 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47698 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:19,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 06:34:19,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 06:34:19,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.176s +2025-10-02 06:34:19,228 - 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 06:34:19,229 - 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 06:34:19,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47712 - "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 06:34:20,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 06:34:20,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 06:34:20,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.161s +2025-10-02 06:34:20,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 06:34:20,785 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:20,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47722 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47738 - "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 06:34:21,791 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:34:21,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 06:34:21,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.170s +2025-10-02 06:34:21,963 - 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 06:34:21,963 - 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 06:34:21,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47752 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47760 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:23,680 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:34:23,711 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.300 +2025-10-02 06:34:23,804 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=74.300 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 06:34:23,804 - 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 06:34:23,806 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 61.255.207.212:63212 - "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 06:34:23,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 06:34: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 06:34:23,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.150s +2025-10-02 06:34:24,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:34:24,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:24,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38828 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38842 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38844 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38858 - "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 06:34:26,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 06:34:26,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 06:34:26,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.157s +2025-10-02 06:34:26,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:34:26,358 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:26,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:26,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 06:34:26,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 06:34:26,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.156s +2025-10-02 06:34:26,697 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:34:26,697 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:26,697 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38870 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38874 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38876 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:28,735 - 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 06:34:28,767 - 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=56.920 +2025-10-02 06:34:28,860 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.920 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 06:34:28,860 - 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 06:34:28,860 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 61.255.207.212:63219 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:9115 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38880 - "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 06:34:29,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 06:34:29,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 06:34:29,627 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:34:29,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:34:29,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 06:34:29,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9116 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38886 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:65256 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:34:32,475 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:34:32,476 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:34:32,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.287s +2025-10-02 06:34:32,763 - 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 06:34:32,763 - 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 06:34:32,763 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:14975 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:65257 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38904 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38906 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:33,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 06:34:33,484 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.191 +2025-10-02 06:34:33,568 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.191 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:34:33,568 - 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 06:34:33,570 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:63226 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:64193 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42180 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:33,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 06:34:33,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 06:34:34,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 06:34:34,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:34:34,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:34,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64194 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51836 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:53937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42190 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:34,994 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:34:35,017 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(960, 960, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=72.676 +2025-10-02 06:34:35,115 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.676 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.098s +2025-10-02 06:34:35,116 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.098s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.101s +2025-10-02 06:34:35,117 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.101s +INFO: 211.197.218.214:53938 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:53109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:35,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 06:34:35,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 06:34:35,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.172s +2025-10-02 06:34:35,628 - 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 06:34:35,629 - 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 06:34:35,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51837 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:34:35,854 - 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 06:34:35,879 - 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.083 +2025-10-02 06:34:35,968 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=135.083 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:34:35,969 - 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 06:34:35,970 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 220.77.167.192:53110 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:42204 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42214 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:42230 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14979 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63436 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42238 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:37,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 06:34:37,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 06:34:37,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 06:34:37,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:34:37,375 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:37,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14980 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42246 - "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 06:34:38,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 06:34:38,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 06:34:38,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.161s +2025-10-02 06:34:38,305 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:34:38,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:38,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63437 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42254 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42266 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42272 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42288 - "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 06:34:41,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 06:34:41,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 06:34:41,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.162s +2025-10-02 06:34:41,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:34:41,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:41,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42298 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:65264 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42312 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:34:43,474 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:34:43,475 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:34:43,531 - app.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 06:34:43,769 - 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 06:34:43,769 - 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 06:34:43,769 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:14987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:65265 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:3820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64200 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46764 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:44,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 06:34:44,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 06:34:44,322 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:34:44,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:34:44,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:44,441 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46776 - "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 06:34:44,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 06:34:44,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 06:34:44,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.158s +2025-10-02 06:34:44,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:34:44,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:44,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64201 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:45,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 06:34:45,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 06:34:45,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.160s +2025-10-02 06:34:45,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:34:45,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:45,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46790 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:45,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 06:34:45,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 06:34:45,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 06:34:45,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:34:45,970 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:45,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46798 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46804 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14998 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:3825 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46818 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:48,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 06:34:48,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 06:34: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.164s +2025-10-02 06:34:48,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:34:48,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:48,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14999 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:49,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 06:34: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 06:34:49,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 06:34:49,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:34:49,268 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:49,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46822 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46824 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:65273 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46838 - "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 06:34:51,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 06:34:51,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 06:34:51,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.166s +2025-10-02 06:34:51,168 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:34:51,168 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:51,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:65274 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46850 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46866 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:34:52,943 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:34:52,944 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:34:53,001 - app.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 06:34:53,232 - 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 06:34:53,233 - 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 06:34:53,233 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:63446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51852 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:3833 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46882 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37230 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:34:53,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 06:34:53,852 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:34:53,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.287s +2025-10-02 06:34:54,140 - 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 06:34:54,140 - 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 06:34:54,140 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:1031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:3834 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37236 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37240 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:56916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:55,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 06:34:55,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 06:34:55,970 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:34:56,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:34:56,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:56,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9885 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:56,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 06:34:56,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 06:34:56,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.172s +2025-10-02 06:34:56,577 - 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 06:34:56,577 - 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 06:34:56,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9886 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37242 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37246 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37262 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64205 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37270 - "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 06:34:59,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 06:34:59,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 06:34:59,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.165s +2025-10-02 06:34:59,211 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:34:59,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:34:59,212 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64206 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:34:59,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 06:34:59,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 06:34:59,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.140s +2025-10-02 06:34:59,523 - 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 06:34:59,523 - 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 06:34:59,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37274 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37286 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1044 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37290 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37298 - "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 06:35:02,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 06:35:02,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 06:35:02,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.151s +2025-10-02 06:35:02,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:35:02,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:02,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1045 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37312 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37326 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9890 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36546 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35: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 06:35: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 06:35:03,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.154s +2025-10-02 06:35:04,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:35:04,113 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:04,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9891 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36556 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36570 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51863 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:06,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 06:35:06,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 06:35:06,301 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:35:06,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:35:06,425 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:06,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:06,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 06:35:06,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 06:35:06,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.146s +2025-10-02 06:35:06,819 - 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 06:35:06,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 06:35:06,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51864 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36572 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1051 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36576 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:07,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 06:35:07,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 06:35: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.146s +2025-10-02 06:35:07,418 - 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 06:35:07,419 - 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 06:35:07,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1052 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36588 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36598 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63482 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:09,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 06:35:09,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 06:35:09,742 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:35:09,866 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:35:09,866 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:09,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63483 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:3848 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36604 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35: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 06:35:10,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 06:35:10,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.155s +2025-10-02 06:35:10,253 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:35:10,253 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:10,253 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3849 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9895 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:10,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 06:35:10,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 06:35:10,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.151s +2025-10-02 06:35:10,676 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:35:10,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 06:35:10,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9896 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63251 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36612 - "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 06:35:11,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 06:35:11,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 06:35:11,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.158s +2025-10-02 06:35:11,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:35:11,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:11,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63252 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:51868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:11,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 06:35:11,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 06:35:11,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.142s +2025-10-02 06:35:11,884 - 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 06:35:11,884 - 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 06:35:11,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36616 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36630 - "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 06:35:12,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 06:35:12,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 06:35:12,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.148s +2025-10-02 06:35:12,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 06:35:12,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 06:35:12,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51869 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8736 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:13,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 06:35:13,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 06:35:13,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.154s +2025-10-02 06:35:13,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:35:13,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:13,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8737 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:65293 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54846 - "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 06:35:14,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 06:35:14,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 06:35:14,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.166s +2025-10-02 06:35:14,270 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:35:14,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:14,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:65294 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54856 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54860 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8742 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54866 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54868 - "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 06:35:17,000 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:17,001 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:17,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.169s +2025-10-02 06:35:17,170 - 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 06:35:17,170 - 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 06:35:17,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8743 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54874 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54882 - "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 06:35:18,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 06:35:18,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 06:35:18,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.168s +2025-10-02 06:35:18,779 - 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 06:35:18,779 - 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 06:35:18,779 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54888 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63258 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54896 - "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 06:35:20,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 06:35:20,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 06:35:20,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.166s +2025-10-02 06:35:20,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 06:35:20,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:20,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63259 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51873 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:20,425 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:20,426 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:20,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.173s +2025-10-02 06:35:20,599 - 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 06:35:20,600 - 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 06:35:20,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:20,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 06:35:20,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 06:35:20,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.155s +2025-10-02 06:35:21,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:35:21,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:21,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51874 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54898 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54914 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:35:23,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 06:35:23,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 06:35:23,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.154s +2025-10-02 06:35:23,195 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:35:23,195 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:23,195 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59362 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:24,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 06:35:24,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 06:35:24,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 06:35:24,543 - 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 06:35:24,543 - 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 06:35:24,544 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59378 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59390 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06: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 06: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 06:35:25,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.163s +2025-10-02 06:35:25,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:35:25,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:25,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59400 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35: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 06:35: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 06:35:25,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.149s +2025-10-02 06:35:26,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 06:35:26,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 06:35:26,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51881 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59410 - "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 06:35:26,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 06:35:26,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 06:35:26,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.143s +2025-10-02 06:35:27,097 - 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 06:35:27,098 - 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 06:35:27,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51882 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:27,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 06:35:27,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 06:35: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.147s +2025-10-02 06:35:27,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:35:27,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 06:35:27,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:54834 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59418 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59434 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63272 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:28,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 06:35:28,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 06:35:28,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.164s +2025-10-02 06:35:28,282 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:35:28,282 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:28,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54835 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:28,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 06:35:28,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 06:35:28,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.150s +2025-10-02 06:35:28,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:35:28,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:28,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63273 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59438 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59442 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59458 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59460 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59476 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59492 - "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 06:35:32,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 06:35:33,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 06:35:33,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.168s +2025-10-02 06:35:33,168 - 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 06:35:33,168 - 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 06:35:33,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:33,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 06:35:33,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 06:35:33,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.170s +2025-10-02 06:35:33,948 - 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 06:35:33,948 - 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 06:35:33,948 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32786 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32792 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:32806 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:35,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 06:35:35,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 06:35:35,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.161s +2025-10-02 06:35:35,915 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:35:35,915 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:35,915 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32812 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:35:36,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:36,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:36,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.168s +2025-10-02 06:35:36,974 - 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 06:35:36,974 - 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 06:35:36,974 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53132 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32826 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32842 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:32858 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32860 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:9936 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32870 - "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 06:35: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 06:35: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 06:35:39,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.161s +2025-10-02 06:35:39,459 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:35:39,459 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:39,459 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9937 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56937 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:35:39,773 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:35:39,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=83.876 +2025-10-02 06:35:39,886 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.876 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:35:39,886 - 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 06:35:39,888 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:56938 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:32882 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63514 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35: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 06:35:41,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 06:35:41,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.172s +2025-10-02 06:35:41,278 - 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 06:35:41,279 - 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 06:35:41,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63515 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32892 - "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 06:35:41,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 06:35:41,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 06:35:41,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.142s +2025-10-02 06:35:41,931 - 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 06:35:41,931 - 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 06:35:41,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51899 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:55066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32898 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32908 - "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 06:35:43,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 06:35:43,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 06:35:43,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.156s +2025-10-02 06:35:43,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 06:35:43,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 06:35:43,180 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56666 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:35:44,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 06:35:44,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 06:35:44,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.171s +2025-10-02 06:35:44,681 - 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 06:35:44,681 - 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 06:35:44,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56680 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:35:44,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 06:35:44,863 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.798 +2025-10-02 06:35:44,954 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=112.798 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:35:44,954 - 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 06:35:44,956 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:56943 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56684 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56686 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56688 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:47,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 06:35:47,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 06:35:47,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.181s +2025-10-02 06:35:47,245 - 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 06:35:47,245 - 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 06:35:47,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56692 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:35:47,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:35:47,810 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.568 +2025-10-02 06:35:47,896 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=85.568 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:35:47,897 - 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 06:35:47,898 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 175.119.234.181:1080 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:51904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:56949 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56708 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56720 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:35:48,823 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:35:48,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=235.753 +2025-10-02 06:35:48,940 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=235.753 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:35:48,941 - 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 06:35:48,942 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:56950 - "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 06:35:49,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 06:35:49,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 06:35:49,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.164s +2025-10-02 06:35:49,292 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:35:49,293 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:49,293 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63300 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56730 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:50,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 06:35:50,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 06:35:50,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.166s +2025-10-02 06:35:50,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:35:50,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:50,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63301 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:65327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56734 - "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 06:35:50,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 06:35:50,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 06:35:50,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.183s +2025-10-02 06:35:51,085 - 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 06:35:51,086 - 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 06:35:51,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:65328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56746 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56758 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1085 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:52,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 06:35:52,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 06:35:52,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.149s +2025-10-02 06:35:53,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:35:53,052 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:53,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1086 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58368 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:54,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 06:35:54,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 06:35:54,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.167s +2025-10-02 06:35:55,050 - 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 06:35:55,050 - 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 06:35:55,050 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58378 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58382 - "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 06:35:55,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 06:35:55,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 06:35:55,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.159s +2025-10-02 06:35:55,755 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:35:55,756 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:55,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55305 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58392 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51909 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:56,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 06:35:56,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 06:35:56,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.167s +2025-10-02 06:35:57,030 - 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 06:35:57,030 - 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 06:35:57,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51910 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1090 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58404 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63582 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:57,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 06:35:57,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 06:35:57,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.147s +2025-10-02 06:35:57,642 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:35:57,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:57,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1091 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58412 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58416 - "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 06:35:58,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 06:35:58,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 06:35:58,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.168s +2025-10-02 06:35:58,403 - 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 06:35:58,403 - 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 06:35:58,403 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63583 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63315 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:35:59,156 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:35:59,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:35:59,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.156s +2025-10-02 06:35:59,313 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:35:59,313 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:35:59,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56957 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58432 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58440 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55483 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:01,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 06:36:01,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 06:36:01,941 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:36:02,066 - 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 06:36:02,066 - 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 06:36:02,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63316 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58460 - "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 06:36:02,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 06:36:02,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 06:36:02,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.151s +2025-10-02 06:36:02,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:36:02,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:02,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58474 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:03,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 06:36:03,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 06:36: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.151s +2025-10-02 06:36:03,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:36:03,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:03,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:03,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 06:36:03,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 06:36:03,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.169s +2025-10-02 06:36:03,721 - 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 06:36:03,721 - 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 06:36:03,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34588 - "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 06:36:04,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 06:36:04,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 06:36:04,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.157s +2025-10-02 06:36:04,828 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:36:04,829 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:04,829 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34604 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34616 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34618 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54078 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63322 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34632 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:36:07,330 - 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 06:36:07,354 - 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.065 +2025-10-02 06:36:07,441 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.065 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:36:07,441 - 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 06:36:07,442 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 220.77.167.192:54079 - "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 06:36:07,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 06:36:07,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 06:36:07,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.145s +2025-10-02 06:36:07,608 - 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 06:36:07,608 - 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 06:36:07,609 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63323 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34644 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:34646 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34660 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63594 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:09,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 06:36:09,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 06:36:09,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.148s +2025-10-02 06:36:09,794 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:36:09,794 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:09,794 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14507 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:09,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 06:36:09,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 06:36:09,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 06:36:10,063 - 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 06:36:10,063 - 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 06:36:10,064 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:10,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 06:36:10,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 06:36:10,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.142s +2025-10-02 06:36:10,341 - 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 06:36:10,341 - 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 06:36:10,341 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63595 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34670 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34674 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34688 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:12,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 06:36:12,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 06:36:12,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.161s +2025-10-02 06:36:12,643 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:36:12,643 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:12,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34700 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59416 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59422 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:14,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 06:36:14,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 06:36:14,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:36:15,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:36:15,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 06:36:15,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:55898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59426 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:16,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 06:36:16,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 06:36:16,442 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +2025-10-02 06:36:16,569 - 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 06:36:16,570 - 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 06:36:16,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55901 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63336 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36: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 06:36: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 06:36:17,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.159s +2025-10-02 06:36:17,193 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:36:17,193 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:17,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63337 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59440 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59442 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:14519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59466 - "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 06:36:20,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 06:36:20,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 06:36:20,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.160s +2025-10-02 06:36:20,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:36:20,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:20,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14520 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59480 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63343 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:50784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:21,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 06:36:21,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 06:36:21,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:36:21,898 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:21,898 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:21,898 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63344 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:22,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 06:36:22,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 06:36:22,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.151s +2025-10-02 06:36:22,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 06:36:22,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:22,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:50785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59508 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56143 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:23,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 06:36:23,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 06:36: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.163s +2025-10-02 06:36:24,098 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:24,098 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:24,099 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56144 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51506 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51522 - "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 06:36:24,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 06:36:24,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 06:36:24,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.143s +2025-10-02 06:36:24,472 - 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 06:36:24,473 - 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 06:36:24,473 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63607 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63350 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:24,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 06:36:24,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 06:36: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 06:36:25,088 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:36:25,088 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:25,089 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63608 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:25,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 06:36:25,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 06:36: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.174s +2025-10-02 06:36:25,747 - 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 06:36:25,748 - 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 06:36:25,748 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63351 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:65355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51542 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:36:26,384 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:36:26,384 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:36:26,449 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.300s +2025-10-02 06:36:26,685 - 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 06:36:26,685 - 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 06:36:26,686 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:56971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:26,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 06:36:26,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 06:36:26,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.163s +2025-10-02 06:36:27,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:27,029 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:27,029 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:65360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51564 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51566 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:28,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 06:36:28,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 06:36: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.160s +2025-10-02 06:36:28,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:36:28,840 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:28,840 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:56325 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51572 - "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 06:36:29,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 06:36:29,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 06:36:29,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.163s +2025-10-02 06:36:29,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:29,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:29,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56326 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56978 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51588 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51592 - "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 06:36:30,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 06:36:30,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 06:36:30,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.146s +2025-10-02 06:36:30,815 - 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 06:36:30,816 - 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 06:36:30,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56979 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36: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 06:36: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 06:36:31,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.137s +2025-10-02 06:36:31,274 - 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 06:36:31,275 - 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 06:36:31,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:31,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 06:36:31,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 06:36:31,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.151s +2025-10-02 06:36:31,662 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:36:31,663 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:31,663 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51608 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51614 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:65366 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37762 - "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 06:36:33,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 06:36:33,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 06:36: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.155s +2025-10-02 06:36:34,128 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:36:34,128 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:34,129 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:65367 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63645 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37768 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:35,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 06:36: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 06:36: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.159s +2025-10-02 06:36:35,531 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:36:35,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:35,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63648 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37784 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:36,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 06:36:36,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 06:36:36,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.166s +2025-10-02 06:36:37,112 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:36:37,112 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:37,112 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56550 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37786 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37798 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37812 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1148 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:38,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 06:36:38,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 06:36:38,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.156s +2025-10-02 06:36:38,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 06:36:38,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 06:36:38,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1149 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37828 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37834 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37850 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:37854 - "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 06:36:41,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 06:36:41,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 06:36: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.161s +2025-10-02 06:36:41,579 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:36:41,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:41,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:56989 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9952 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:41,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 06:36: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 06:36:41,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.155s +2025-10-02 06:36:42,043 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:36:42,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:42,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56990 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37856 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:36:42,290 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:36:42,315 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.432 +2025-10-02 06:36:42,395 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.432 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 06:36:42,396 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:36:42,398 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 175.119.234.181:9953 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.197.218.214:56716 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37866 - "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 06:36:43,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 06:36:43,318 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:36:43,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.168s +2025-10-02 06:36:43,486 - 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 06:36:43,486 - 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 06:36:43,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56721 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52508 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52510 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:56996 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52522 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:46,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 06:36:46,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 06:36:46,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.182s +2025-10-02 06:36:46,619 - 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 06:36:46,620 - 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 06:36:46,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:56997 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:46,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 06:36:46,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 06:36: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.158s +2025-10-02 06:36:47,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:36:47,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:47,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52534 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52536 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1164 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52550 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:48,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 06:36:48,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 06:36:48,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.178s +2025-10-02 06:36:48,845 - 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 06:36:48,845 - 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 06:36:48,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1165 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52574 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52586 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52590 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:56988 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:36:51,806 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:36:51,807 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:36:51,869 - app.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 06:36:52,120 - 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.156s/image) +2025-10-02 06:36:52,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:36:52,121 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:56991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52610 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52614 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60548 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60560 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:56,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 06:36:56,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 06:36: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.160s +2025-10-02 06:36:56,251 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:36:56,252 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:56,252 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60572 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60580 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:57,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 06:36:57,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 06:36:57,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 06:36:57,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:36:57,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:57,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:9968 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60588 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:59,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 06:36:59,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 06:36:59,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.163s +2025-10-02 06:36:59,454 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:36:59,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:36:59,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9969 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:57230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:36:59,524 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:36:59,544 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=94.383 +2025-10-02 06:36:59,617 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.383 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 06:36:59,618 - 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 06:36:59,619 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 175.119.234.181:14542 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:60596 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:36:59,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 06:36:59,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 06:36: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.148s +2025-10-02 06:37:00,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:37:00,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:00,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37: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 06:37: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 06:37:01,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.158s +2025-10-02 06:37:01,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:37:01,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:01,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57016 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:02,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 06:37:02,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 06:37:02,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.146s +2025-10-02 06:37:02,315 - 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 06:37:02,316 - 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 06:37:02,316 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60614 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54072 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54088 - "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 06:37:04,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 06:37:04,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:04,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 06:37:04,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:37:04,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:04,312 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54098 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54110 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54112 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63689 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:07,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 06:37:07,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 06:37:07,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.157s +2025-10-02 06:37:07,312 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:37:07,312 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:07,313 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63690 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:57444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54122 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37: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 06:37:07,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 06:37:07,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.161s +2025-10-02 06:37:07,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:37:07,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:07,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54124 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57022 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:09,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 06:37:09,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 06:37:09,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.158s +2025-10-02 06:37:09,668 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:37:09,668 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:09,668 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57023 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54140 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:14553 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:09,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 06:37:09,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 06:37:09,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.151s +2025-10-02 06:37:09,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:37:09,983 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:09,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:10,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 06:37:10,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 06:37:10,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.139s +2025-10-02 06:37:10,406 - 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 06:37:10,407 - 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 06:37:10,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14554 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54158 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:37:12,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 06:37:12,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 06:37:12,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.154s +2025-10-02 06:37:12,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:37:12,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:12,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57573 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54162 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54164 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:54168 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49040 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:14,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 06:37:14,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 06:37:14,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.184s +2025-10-02 06:37:14,941 - 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 06:37:14,941 - 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 06:37:14,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49046 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:57605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:15,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 06:37:15,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 06:37:15,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.149s +2025-10-02 06:37:16,017 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:37:16,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 06:37:16,018 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49054 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49064 - "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 06:37:16,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 06:37: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 06:37:16,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.145s +2025-10-02 06:37:16,387 - 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 06:37:16,387 - 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 06:37:16,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57606 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:14564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:16,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 06:37:16,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 06:37:16,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.146s +2025-10-02 06:37:16,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 06:37:16,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 06:37:16,791 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:14565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49074 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49078 - "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 06:37:18,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 06:37:18,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 06:37:18,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.148s +2025-10-02 06:37:18,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:37:18,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:18,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54101 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49094 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:57610 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:19,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 06:37:19,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 06:37:19,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.154s +2025-10-02 06:37:20,026 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:37:20,026 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:20,026 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57611 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49118 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49128 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:51941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:37:21,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 06:37:21,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=72.697 +2025-10-02 06:37:21,731 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.697 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:37:21,731 - 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 06:37:21,733 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 39.112.59.88:51942 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:63725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49140 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:23,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 06:37:23,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 06:37:23,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 06:37:23,317 - 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 06:37:23,318 - 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 06:37:23,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49144 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:57619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:37:23,715 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:37:23,716 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:37:23,770 - app.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 06:37:23,991 - 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 06:37:23,992 - 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 06:37:23,992 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:1219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:57620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57126 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57130 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57142 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57148 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57636 - "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 06:37:27,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 06:37:27,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 06:37:27,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.156s +2025-10-02 06:37:27,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:37:27,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:27,476 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57152 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57156 - "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 06:37:28,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 06:37:28,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 06:37:28,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 06:37:28,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:37:28,585 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:28,585 - 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: 127.0.0.1:57158 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:51967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37: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 06:37:29,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 06:37:29,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.157s +2025-10-02 06:37:29,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:37:29,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:29,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57168 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:30,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 06:37:30,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 06:37:30,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.153s +2025-10-02 06:37:31,120 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:37:31,120 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:31,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54108 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57184 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57186 - "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 06:37:31,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 06:37:31,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 06:37:31,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.157s +2025-10-02 06:37:31,923 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:37:31,923 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:31,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54109 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57192 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35290 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63739 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:34,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 06:37:34,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 06:37:34,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.170s +2025-10-02 06:37:34,547 - 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 06:37:34,547 - 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 06:37:34,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63740 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35294 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35296 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:9986 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35302 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:35,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 06:37:35,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 06:37:35,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.164s +2025-10-02 06:37:36,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:37:36,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:36,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9987 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:57810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35314 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:36,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 06:37:36,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 06:37:36,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.153s +2025-10-02 06:37:37,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 06:37:37,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 06:37:37,120 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:37,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 06:37:37,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 06:37:37,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.170s +2025-10-02 06:37:37,460 - 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 06:37:37,460 - 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 06:37:37,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35320 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35324 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:37:38,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 06:37:38,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 06:37:38,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.153s +2025-10-02 06:37:38,505 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:37:38,505 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:38,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35330 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35346 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35360 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:37:41,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 06:37:41,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 06:37:41,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.158s +2025-10-02 06:37:42,016 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:37:42,017 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:42,017 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57950 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35376 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35380 - "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 06:37:43,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 06:37:43,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 06:37:43,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.167s +2025-10-02 06:37:43,767 - 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 06:37:43,767 - 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 06:37:43,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41380 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41382 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:41396 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:9994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:45,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 06:37:45,015 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:45,048 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:37:45,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:37:45,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:45,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:9995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:58053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:37:45,353 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:37:45,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 06:37:45,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.285s +2025-10-02 06:37:45,639 - 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 06:37:45,639 - 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 06:37:45,639 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:54119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41402 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:45,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 06:37:45,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 06:37:45,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.144s +2025-10-02 06:37:45,965 - 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 06:37:45,965 - 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 06:37:45,966 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41404 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41408 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41414 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41426 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:48,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 06:37:48,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 06:37:48,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.166s +2025-10-02 06:37:49,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 06:37:49,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 06:37:49,058 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:37:50,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 06:37:50,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 06:37:50,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.153s +2025-10-02 06:37:51,075 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:37:51,076 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:51,076 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41440 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41452 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41468 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54124 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:52,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 06:37:52,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 06:37:53,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.159s +2025-10-02 06:37:53,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:37:53,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 06:37:53,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54125 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41474 - "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 06:37:53,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 06:37:53,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 06:37:53,702 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.183s +2025-10-02 06:37:53,842 - 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 06:37:53,842 - 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 06:37:53,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:54,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 06:37:54,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 06:37:54,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.141s +2025-10-02 06:37:54,288 - 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 06:37:54,288 - 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 06:37:54,288 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:58338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37040 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37046 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:55,995 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:37:55,996 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:37:56,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.159s +2025-10-02 06:37:56,155 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:37:56,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:56,156 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37058 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37074 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13241 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37088 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37100 - "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 06:37:57,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 06:37:57,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 06:37: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.172s +2025-10-02 06:37:57,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 06:37:57,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 06:37:57,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:51987 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:58,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 06:37:58,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 06:37:58,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.162s +2025-10-02 06:37:58,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:37:58,366 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:58,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:51988 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37106 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:58471 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54130 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:37:59,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 06:37:59,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 06:37:59,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.155s +2025-10-02 06:37:59,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:37:59,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:37:59,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58472 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37118 - "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 06:38:00,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 06:38:00,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 06:38:00,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.162s +2025-10-02 06:38:00,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:38:00,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:00,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54131 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37124 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37128 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37144 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:63773 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37148 - "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 06:38:02,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 06:38:02,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 06:38:02,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.163s +2025-10-02 06:38:02,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:38:02,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:02,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63774 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38: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 06:38: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 06:38:03,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.167s +2025-10-02 06:38:03,168 - 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 06:38:03,169 - 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 06:38:03,169 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33314 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33322 - "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 06:38:03,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 06:38:03,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 06:38:04,032 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:38:04,157 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:38:04,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:04,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:58633 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33338 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:04,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 06:38:04,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 06:38:04,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.150s +2025-10-02 06:38:04,963 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:38:04,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:04,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33342 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33354 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33368 - "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 06:38:06,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 06:38:06,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 06:38:06,595 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 06:38:06,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:38:06,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:06,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:07,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 06:38:07,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 06:38:07,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.165s +2025-10-02 06:38:07,289 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:38:07,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:07,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33382 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33396 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63390 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:09,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 06:38:09,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 06:38:09,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.154s +2025-10-02 06:38:09,632 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:38:09,632 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:09,633 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63391 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33412 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33414 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:58814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:10,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 06:38:10,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 06:38:10,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.147s +2025-10-02 06:38:10,726 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:38:10,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:10,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:63136 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:11,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 06:38:11,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 06:38:11,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.161s +2025-10-02 06:38:11,431 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:38:11,432 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:11,432 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63808 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33442 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33458 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33468 - "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 06:38:13,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 06:38:13,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 06:38:13,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.172s +2025-10-02 06:38:13,396 - 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 06:38:13,397 - 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 06:38:13,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:58911 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56220 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:14,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 06:38:14,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 06:38: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.161s +2025-10-02 06:38:14,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:38:14,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:14,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58912 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56226 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56242 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56244 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:56254 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56270 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10029 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:17,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 06:38:17,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 06:38:17,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.164s +2025-10-02 06:38:17,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:38:17,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:17,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10030 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56274 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56286 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56292 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:19,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 06:38:19,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 06:38:19,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.169s +2025-10-02 06:38:19,230 - 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 06:38:19,231 - 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 06:38:19,231 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:19,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 06:38:19,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 06:38:19,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 06:38:19,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:38:19,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:19,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56296 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:20,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 06: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 06:38:20,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.150s +2025-10-02 06:38:20,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:38:20,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:20,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:21,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 06:38:21,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 06:38:21,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.154s +2025-10-02 06:38:21,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:38:21,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:21,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56304 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38: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 06:38:22,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 06:38:22,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.148s +2025-10-02 06:38:22,782 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:38:22,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:22,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:38:22,808 - 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 06:38:22,825 - 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=68.967 +2025-10-02 06:38:22,900 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=68.967 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 06:38:22,900 - 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 06:38:22,900 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 61.255.207.212:64292 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56306 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10037 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33394 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:24,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 06:38:24,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 06:38:24,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.162s +2025-10-02 06:38:24,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:38:24,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:24,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10038 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33410 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33428 - "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 06:38:26,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 06:38:26,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 06:38:26,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.164s +2025-10-02 06:38:26,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 06:38:26,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 06:38:26,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59242 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:38:26,493 - 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 06:38:26,515 - 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=23.796 +2025-10-02 06:38:26,591 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=23.796 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:38:26,591 - 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 06:38:26,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 61.255.207.212:64299 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33440 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33450 - "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 06:38:28,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 06:38:28,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 06:38:28,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.155s +2025-10-02 06:38:28,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:38:28,352 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:28,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33460 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33464 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:38:29,806 - 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 06:38:29,829 - 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=27.558 +2025-10-02 06:38:29,905 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.558 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 06:38:29,905 - 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 06:38:29,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 61.255.207.212:64304 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:10045 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:30,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 06:38:30,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 06:38:30,334 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:38:30,462 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:38:30,462 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:30,463 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10046 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33476 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:59394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:31,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 06:38:31,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 06:38:31,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.155s +2025-10-02 06:38:31,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:38:31,303 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:31,303 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33482 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:63822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:32,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 06:38:32,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 06:38:32,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.170s +2025-10-02 06:38:32,835 - 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 06:38:32,835 - 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 06:38:32,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 127.0.0.1:33498 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33506 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54153 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:34,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 06:38:34,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 06:38:34,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 06:38:34,188 - 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 06:38:34,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.169s (avg: 0.169s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:34,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54154 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50092 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:35,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 06:38:35,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 06:38:35,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.142s +2025-10-02 06:38:35,455 - 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 06:38:35,456 - 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 06:38:35,456 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10051 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:35,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 06:38:35,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 06:38:35,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.148s +2025-10-02 06:38:36,008 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:38:36,008 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:36,008 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10052 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50098 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:36,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 06:38:36,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 06:38:36,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.151s +2025-10-02 06:38:36,671 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:38:36,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:36,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:59579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:37,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 06:38:37,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 06:38:37,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.149s +2025-10-02 06:38:37,452 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:38:37,452 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:37,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50120 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50130 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50142 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:39,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 06:38:39,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 06:38:39,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.168s +2025-10-02 06:38:40,043 - 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 06:38:40,044 - 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 06:38:40,044 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:63145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50158 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:40,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 06:38:40,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 06:38:40,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.149s +2025-10-02 06:38:40,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:38:40,592 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:40,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1267 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50166 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38: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 06:38: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 06:38:41,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.153s +2025-10-02 06:38:41,547 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:38:41,547 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:41,547 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1268 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63834 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:41,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 06:38:41,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 06:38:41,753 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:38:41,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:38:41,871 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:41,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59722 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50176 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50182 - "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 06:38:42,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 06:38:42,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 06:38:42,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.169s +2025-10-02 06:38:42,717 - 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 06:38:42,717 - 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 06:38:42,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63835 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50198 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58040 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58056 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:38:45,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 06:38:45,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:38:45,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.149s +2025-10-02 06:38:45,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:38:45,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:45,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58070 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58076 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:58086 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58088 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58092 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59925 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:49,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 06:38:49,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 06:38:49,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.166s +2025-10-02 06:38:49,266 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:38:49,266 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:49,266 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58108 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38:50,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 06:38:50,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 06:38:50,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.147s +2025-10-02 06:38:50,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:38:50,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:50,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58118 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58146 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58148 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:38:53,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 06:38:53,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 06:38:53,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.152s +2025-10-02 06:38:53,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 06:38:53,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 06:38:53,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:63862 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58152 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57868 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57874 - "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 06:38:54,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 06:38:54,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 06:38:54,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.179s +2025-10-02 06:38:54,830 - 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 06:38:54,831 - 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 06:38:54,831 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63863 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57888 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57894 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57906 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57914 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:60123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:38: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 06:38: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 06:38:58,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.166s +2025-10-02 06:38:58,261 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:38:58,261 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:38:58,261 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57930 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63155 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1287 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:38:59,989 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:38:59,990 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:39:00,043 - app.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 06:39:00,277 - 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 06:39:00,278 - 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 06:39:00,278 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:1288 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:63156 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:00,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 06:39:00,488 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:00,522 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:39:00,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:39:00,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:00,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57081 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57944 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57956 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57972 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57988 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56622 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56642 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56648 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56658 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56666 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56674 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:3821 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56678 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56690 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:63161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56702 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56712 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:60528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56714 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:39:12,230 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:39:12,255 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.704 +2025-10-02 06:39:12,341 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.704 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:39:12,342 - 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 06:39:12,343 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 175.119.234.181:3822 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56716 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57474 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57484 - "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 06:39:14,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 06:39:14,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 06:39:14,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.159s +2025-10-02 06:39:14,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:39:14,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:14,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:15,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 06:39:15,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 06:39:15,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.170s +2025-10-02 06:39:16,083 - 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 06:39:16,083 - 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 06:39:16,083 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57502 - "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 06:39:16,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 06:39:16,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 06:39:16,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.167s +2025-10-02 06:39:17,078 - 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 06:39:17,079 - 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 06:39:17,079 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57514 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57516 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:57522 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:3827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57536 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:19,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 06:39:19,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 06:39: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.183s +2025-10-02 06:39:20,052 - 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 06:39:20,052 - 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 06:39:20,052 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63886 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57540 - "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 06:39:20,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 06:39:20,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 06:39:20,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.162s +2025-10-02 06:39:20,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:39:20,529 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:20,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:20,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 06:39:20,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 06:39:20,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.179s +2025-10-02 06:39:20,878 - 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 06:39:20,878 - 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 06:39:20,878 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57554 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57570 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57586 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57588 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:39:23,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 06:39:23,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 06:39:23,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.165s +2025-10-02 06:39:23,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:39:23,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 06:39:23,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52012 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:39:24,190 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:39:24,191 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:39:24,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.286s +2025-10-02 06:39:24,478 - 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 06:39:24,478 - 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 06:39:24,478 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:3828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54946 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54954 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54956 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63431 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54962 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:27,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 06:39:27,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:27,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.158s +2025-10-02 06:39:27,315 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:39:27,315 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:27,315 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63432 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54972 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54980 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64334 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54984 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:28,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 06:39:28,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 06:39:28,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 06:39:28,957 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:39:28,958 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:28,958 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64335 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39: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 06:39: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 06:39:29,144 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:39:29,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:39:29,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 06:39:29,263 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54990 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:3834 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:29,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 06:39:29,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 06:39:29,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.166s +2025-10-02 06:39:29,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:39:29,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:29,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55004 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55006 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:31,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 06:39:31,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 06:39:31,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.165s +2025-10-02 06:39:31,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:39:31,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:31,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3835 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55018 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:32,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 06:39:32,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 06:39:32,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.169s +2025-10-02 06:39:32,615 - 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 06:39:32,615 - 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 06:39:32,615 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57103 - "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.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:39:32,778 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(804, 804, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:39:32,815 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(804, 804, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=62.178 +2025-10-02 06:39:32,906 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=62.178 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:39:32,906 - 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 06:39:32,908 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 39.112.59.88:52013 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:1314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47828 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47836 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47844 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:35,310 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:39:35,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:39:35,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.171s +2025-10-02 06:39:35,483 - 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 06:39:35,483 - 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 06:39:35,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47852 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47864 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47870 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47884 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:63182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47888 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47890 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47900 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:39:40,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 06:39:40,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 06:39:40,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.170s +2025-10-02 06:39:40,529 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +2025-10-02 06:39:40,530 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.170s (avg: 0.170s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:40,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:63183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47904 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:41,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 06:39:41,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 06:39:41,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.153s +2025-10-02 06:39:41,418 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:39:41,418 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:41,419 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57110 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47914 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47928 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47936 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49200 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49212 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49222 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49224 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49232 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49238 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:57116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49240 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:56466 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49244 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:63919 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39: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 06:39:50,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 06:39:50,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.166s +2025-10-02 06:39:50,352 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:39:50,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:50,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49250 - "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 06:39:50,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 06:39:50,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 06:39:51,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.186s +2025-10-02 06:39:51,173 - 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 06:39:51,173 - 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 06:39:51,173 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:63920 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49264 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49276 - "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 06:39:51,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 06:39:51,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 06:39:51,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.166s +2025-10-02 06:39:51,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:39:51,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 06:39:51,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56467 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49288 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10090 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:3858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:53,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 06:39:53,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 06:39:53,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.166s +2025-10-02 06:39:53,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:39:53,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:53,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10091 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58718 - "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 06:39:54,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 06:39:54,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 06:39:54,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.176s +2025-10-02 06:39:54,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 06:39:54,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 06:39:54,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58730 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58738 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58752 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58768 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58770 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58782 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:3863 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58794 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:39:58,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 06:39:58,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 06:39:58,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.151s +2025-10-02 06:39:59,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:39:59,002 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:39:59,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:3864 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58810 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:40:01,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 06:40:01,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 06:40: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.149s +2025-10-02 06:40:01,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 06:40:01,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 06:40:01,199 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56479 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58820 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58826 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58836 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:11051 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48002 - "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 06:40:04,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 06:40:04,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 06:40:04,199 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.170s +2025-10-02 06:40:04,330 - 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 06:40:04,330 - 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 06:40:04,330 - 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: 175.119.234.181:10098 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48008 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48020 - "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 06:40:04,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 06:40:04,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 06:40:04,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 06:40:04,900 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:40:04,900 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:04,900 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10099 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:05,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 06:40:05,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 06:40:05,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 06:40:05,712 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:40:05,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 06:40:05,713 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1346 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48036 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64370 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:07,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 06:40:07,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 06:40:07,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.148s +2025-10-02 06:40:07,611 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:40:07,611 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:07,612 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48046 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48060 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11056 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:08,516 - 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 06:40:08,546 - 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=106.299 +2025-10-02 06:40:08,651 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=106.299 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.104s +2025-10-02 06:40:08,652 - 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 06:40:08,654 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.107s +INFO: 61.255.207.212:63445 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:48062 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:09,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 06:40:09,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 06:40:09,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.165s +2025-10-02 06:40:09,170 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:40:09,170 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:09,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11057 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:09,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 06:40:09,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 06:40:09,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.161s +2025-10-02 06:40:09,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:40:09,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:09,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48066 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:56485 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:11,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 06:40:11,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 06:40:11,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.147s +2025-10-02 06:40:11,212 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:40:11,212 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:11,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56486 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48074 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48078 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48086 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:11062 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:12,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 06:40:12,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 06:40:12,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.178s +2025-10-02 06:40:12,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.178s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +2025-10-02 06:40:12,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.178s (avg: 0.178s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:12,675 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53463 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:13,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 06:40:13,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 06:40: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.161s +2025-10-02 06:40:13,300 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:40:13,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:13,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11063 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48096 - "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 06:40:13,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 06:40:13,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 06:40:13,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.156s +2025-10-02 06:40:13,583 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:40:13,583 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:13,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53464 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56512 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56516 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56532 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56548 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:17,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 06:40:17,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 06:40:17,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.171s +2025-10-02 06:40:17,654 - 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 06:40:17,654 - 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 06:40:17,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11071 - "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: 127.0.0.1:56582 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63451 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:17,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 06:40:17,824 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.390 +2025-10-02 06:40:17,914 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=108.390 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:40:17,914 - 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 06:40:17,916 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:63452 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:57127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:18,154 - 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 06:40:18,179 - 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=67.611 +2025-10-02 06:40:18,271 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=67.611 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:40:18,271 - 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 06:40:18,272 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 61.255.207.212:57128 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56598 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:56490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56612 - "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 06:40:20,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 06:40:20,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 06:40:20,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.152s +2025-10-02 06:40:20,232 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:40:20,233 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:20,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56628 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56636 - "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 06:40:21,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 06:40:21,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 06:40:21,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.157s +2025-10-02 06:40:21,278 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:40:21,279 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:21,279 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57132 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63456 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:21,601 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:21,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=87.495 +2025-10-02 06:40:21,715 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=87.495 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:40:21,715 - 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 06:40:21,716 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:57133 - "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 06:40:21,810 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:21,827 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.005 +2025-10-02 06:40:21,916 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=86.005 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:40:21,917 - 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 06:40:21,918 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:63457 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56642 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56648 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45114 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52047 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45120 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:25,294 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:25,309 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.536 +2025-10-02 06:40:25,400 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=29.536 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 06:40:25,400 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.090s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.092s +2025-10-02 06:40:25,401 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:57140 - "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 06:40:25,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 06:40:25,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 06:40:25,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.149s +2025-10-02 06:40:25,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 06:40:25,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 06:40:25,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52048 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45130 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45138 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45144 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:28,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 06:40:28,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 06:40:28,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.160s +2025-10-02 06:40:28,595 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:40:28,595 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:28,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10119 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:56496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45160 - "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 06:40:29,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 06:40:29,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 06:40:29,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.145s +2025-10-02 06:40:29,558 - 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 06:40:29,558 - 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 06:40:29,559 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45168 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45174 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52052 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:30,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 06:40:30,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 06:40:30,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.146s +2025-10-02 06:40:30,890 - 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 06:40:30,890 - 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 06:40:30,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52053 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45176 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63461 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:32,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 06:40:32,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 06:40:32,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 06:40:32,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:40:32,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:32,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63462 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:5481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45190 - "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 06:40:32,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 06:40:32,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 06:40:32,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.156s +2025-10-02 06:40:32,995 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:40:32,995 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:32,995 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34102 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34104 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10123 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:34,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 06:40:34,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 06:40:34,445 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +2025-10-02 06:40:34,562 - 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 06:40:34,562 - 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 06:40:34,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10124 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52057 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:35,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 06:40:35,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 06:40:35,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.155s +2025-10-02 06:40:35,361 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:40:35,361 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:35,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52058 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:35,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 06:40:35,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 06:40:35,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.145s +2025-10-02 06:40:35,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 06:40:35,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 06:40:35,788 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57145 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34120 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34128 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34144 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:5488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:37,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 06:40:37,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 06:40: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.164s +2025-10-02 06:40:37,511 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:40:37,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:37,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34152 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34160 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10129 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:39,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 06:40:39,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 06:40:39,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.158s +2025-10-02 06:40:39,783 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:40:39,783 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:39,783 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10130 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34166 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34168 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:40,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 06:40:40,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 06:40:40,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.148s +2025-10-02 06:40:40,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 06:40:40,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:40,377 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34174 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63468 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:41,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 06:40:41,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 06:40:41,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.195s +2025-10-02 06:40:41,646 - 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 06:40:41,646 - 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 06:40:41,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63469 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52062 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34190 - "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 06:40:42,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 06:40:42,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 06:40: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.135s +2025-10-02 06:40:42,256 - 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 06:40:42,257 - 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 06:40:42,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52063 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:5497 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:40:42,294 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:40:42,319 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.824 +2025-10-02 06:40:42,403 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=118.824 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:40:42,403 - 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 06:40:42,405 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 175.119.234.181:1360 - "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 06:40:42,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 06:40:42,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 06:40:42,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.172s +2025-10-02 06:40:43,104 - 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 06:40:43,105 - 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 06:40:43,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34194 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34202 - "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 06:40:43,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 06:40:43,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 06:40:43,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.160s +2025-10-02 06:40:43,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:40:43,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:43,582 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49012 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49022 - "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 06:40:45,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 06:40:45,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 06:40:45,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.151s +2025-10-02 06:40:45,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:40:45,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:45,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10136 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49028 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49032 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49044 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52067 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49052 - "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 06:40:48,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 06:40:48,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 06:40: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.167s +2025-10-02 06:40:48,919 - 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 06:40:48,920 - 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 06:40:48,920 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52068 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49064 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49070 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:49072 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49074 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:5512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49086 - "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 06:40: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 06:40: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 06:40:51,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.161s +2025-10-02 06:40:51,426 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:40:51,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:51,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:51,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 06:40: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 06:40: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.157s +2025-10-02 06:40:51,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:40:51,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 06:40:51,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49100 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49116 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:53,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 06:40:53,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 06:40:53,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.153s +2025-10-02 06:40:53,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 06:40:53,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 06:40:53,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49128 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:40:54,037 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:40:54,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 06:40:54,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.150s +2025-10-02 06:40:54,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:40:54,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:54,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42156 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42168 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42176 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:5517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42204 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:40:57,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 06:40:57,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 06:40:57,565 - app.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 06:40:57,795 - 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 06:40:57,795 - 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 06:40:57,795 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:10146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:5518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1377 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42218 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42234 - "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 06:40:58,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 06:40:58,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 06:40: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.150s +2025-10-02 06:40:58,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:40:58,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:40:58,992 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42244 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42250 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42264 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42276 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:41:02,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 06:41:02,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 06:41:02,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 06:41:02,215 - 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 06:41:02,216 - 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 06:41:02,216 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10155 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42284 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:02,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 06:41: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 06:41:02,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.158s +2025-10-02 06:41:02,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:41:02,717 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:02,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10156 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:5522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:03,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 06:41:03,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 06:41:03,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.152s +2025-10-02 06:41:03,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:41:03,488 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:03,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42296 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52079 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39462 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39470 - "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 06:41:04,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 06:41:04,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 06:41:04,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.156s +2025-10-02 06:41:04,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:41:04,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:04,797 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52080 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:41:05,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 06:41:05,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 06:41:05,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.157s +2025-10-02 06:41:05,577 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:41:05,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:05,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:05,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 06:41:05,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 06:41:05,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.139s +2025-10-02 06:41:05,886 - 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 06:41:05,887 - 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 06:41:05,887 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39482 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39496 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39500 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57173 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:08,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 06:41:08,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 06:41:08,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.165s +2025-10-02 06:41:08,267 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:41:08,267 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:08,267 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57174 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39514 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:09,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 06:41:09,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 06:41: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.155s +2025-10-02 06:41:09,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 06:41:09,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 06:41:09,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39522 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57178 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39536 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39538 - "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 06:41:10,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 06:41:10,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 06:41:10,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.143s +2025-10-02 06:41:10,917 - 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 06:41:10,918 - 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 06:41:10,918 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57179 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39550 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39562 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47596 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47612 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:41:14,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 06:41:14,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 06:41:14,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.165s +2025-10-02 06:41:14,555 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:41:14,555 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:14,555 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52087 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:14,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 06:41:14,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 06:41:14,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.152s +2025-10-02 06:41:14,851 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:41:14,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:14,852 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47626 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:15,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 06:41:15,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 06:41:15,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.162s +2025-10-02 06:41:15,768 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:41:15,768 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:15,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47628 - "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 06:41:16,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 06:41:16,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 06:41:16,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.159s +2025-10-02 06:41:16,703 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:41:16,704 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:16,704 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52088 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:63944 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10166 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64443 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47644 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:41:17,409 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:17,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 06:41:17,474 - app.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 06:41:17,705 - 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 06:41:17,706 - 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 06:41:17,706 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64444 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10167 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47656 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:41:17,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 06:41:17,980 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.207 +2025-10-02 06:41:18,063 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.207 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:41:18,063 - 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 06:41:18,065 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 211.197.218.214:63961 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47658 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:19,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 06:41:19,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 06:41:19,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.146s +2025-10-02 06:41:19,556 - 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 06:41:19,557 - 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 06:41:19,557 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:56518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:41:19,820 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:41:19,855 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.770 +2025-10-02 06:41:19,948 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=69.770 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.092s +2025-10-02 06:41:19,948 - 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 06:41:19,949 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 175.119.234.181:56519 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47674 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47688 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47696 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:1394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:21,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 06:41:21,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 06:41:21,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.133s +2025-10-02 06:41:21,429 - 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 06:41:21,429 - 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 06:41:21,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47700 - "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 06:41:22,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 06:41:22,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 06:41:22,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 06:41:22,395 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:41:22,395 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:22,395 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52092 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:41:22,550 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:22,551 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:22,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-02 06:41:22,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +2025-10-02 06:41:22,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.131s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:41:22,813 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:57196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47708 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47720 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:41:23,244 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41: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 06:41:23,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.285s +2025-10-02 06:41:23,529 - 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 06:41:23,530 - 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 06:41:23,530 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:10172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52093 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32912 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1399 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:24,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 06:41:24,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 06:41:24,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.138s +2025-10-02 06:41:24,670 - 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 06:41:24,670 - 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 06:41:24,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1400 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32920 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:32934 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:32950 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63500 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:26,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 06:41:26,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 06:41: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.151s +2025-10-02 06:41:26,813 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:41:26,813 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:26,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63501 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32954 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10176 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52097 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32970 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:28,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 06:41:28,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 06:41:28,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.167s +2025-10-02 06:41:28,805 - 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 06:41:28,805 - 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 06:41:28,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10177 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:41:29,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 06:41:29,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 06:41:29,192 - app.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 06:41:29,419 - 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 06:41:29,419 - 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 06:41:29,419 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52098 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32972 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:56523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:32980 - "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 06:41: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 06:41: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 06:41:30,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.173s +2025-10-02 06:41:30,139 - 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 06:41:30,139 - 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 06:41:30,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:32996 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63507 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:31,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 06:41:31,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 06:41:31,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.145s +2025-10-02 06:41:31,186 - 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 06:41:31,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 06:41:31,187 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63508 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33010 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33018 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33032 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1410 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:34,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 06:41:34,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 06:41:34,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.146s +2025-10-02 06:41:34,212 - 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 06:41:34,212 - 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 06:41:34,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1411 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52592 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10181 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:41:34,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 06:41:34,843 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:34,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.279s +2025-10-02 06:41:35,122 - 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.140s/image) +2025-10-02 06:41:35,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.279s (avg: 0.140s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:41:35,123 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10182 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52594 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52606 - "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 06:41: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 06:41:35,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 06:41:35,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.163s +2025-10-02 06:41:35,824 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:41:35,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:35,825 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52103 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52614 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52624 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63520 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:5545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41: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 06:41: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 06:41:38,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 06:41:38,381 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:41:38,382 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:38,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63521 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:56528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64124 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:38,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 06:41:38,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 06:41:38,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.145s +2025-10-02 06:41:38,683 - 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 06:41:38,683 - 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 06:41:38,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52648 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:41:38,849 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41: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 06:41:38,900 - app.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 06:41:39,127 - 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 06:41:39,127 - 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 06:41:39,127 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:56529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64125 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52654 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52656 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1421 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:41,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 06:41:41,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 06:41:41,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.152s +2025-10-02 06:41:41,490 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:41:41,490 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:41,490 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52688 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:42,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 06:41:42,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 06:41:42,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.157s +2025-10-02 06:41:42,350 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:41:42,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:42,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52694 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:43,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 06:41:43,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 06:41:43,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.154s +2025-10-02 06:41:43,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:41:43,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:43,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52838 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57229 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:44,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 06:41:44,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 06:41:44,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.137s +2025-10-02 06:41:44,386 - 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 06:41:44,387 - 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 06:41:44,387 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57230 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:41:44,736 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:41:44,767 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=107.891 +2025-10-02 06:41:44,849 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.891 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:41:44,850 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.081s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.085s +2025-10-02 06:41:44,852 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 220.77.167.192:53482 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:1430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52848 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52856 - "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 06:41:45,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 06:41:45,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 06:41:45,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.149s +2025-10-02 06:41:45,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:41:45,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:45,384 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:45,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 06:41:45,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 06:41:45,756 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +2025-10-02 06:41:45,875 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:41:45,875 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:45,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1570 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52872 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52882 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:58159 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57234 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64137 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 06:41:47,381 - 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 06:41:47,381 - 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 06:41:47,469 - 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.416s +2025-10-02 06:41:47,797 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 3). VRAM: 0.0 GB | Duration: 0.416s +INFO:app.core.worker_manager:'simple-lama' batch of 3 processed in 0.416s (avg: 0.139s/image) +2025-10-02 06:41:47,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 3 processed in 0.416s (avg: 0.139s/image) +INFO:app.core.batch_manager:Successfully processed batch of 3 jobs. +2025-10-02 06:41:47,798 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 175.119.234.181:58160 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57235 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52884 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:64585 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:41:48,310 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:41:48,311 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:41:48,365 - app.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 06:41:48,587 - 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 06:41:48,587 - 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 06:41:48,587 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:64588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64138 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52904 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:49,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 06:41:49,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 06:41:49,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.148s +2025-10-02 06:41:49,406 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:41:49,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:49,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52914 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52930 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52942 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52956 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52966 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 61.255.207.212:57239 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63538 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:52,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 06:41:52,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 06:41:52,926 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.136s +2025-10-02 06:41:53,041 - 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 06:41:53,041 - 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 06:41:53,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57240 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52970 - "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 06:41:53,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 06:41:53,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 06:41:53,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.147s +2025-10-02 06:41:53,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:41:53,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 06:41:53,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63539 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35078 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35082 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1584 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:54,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 06:41:54,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 06:41:54,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 06:41:54,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 06:41:54,969 - 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 06:41:54,969 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:64776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:55,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 06:41:55,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 06:41:55,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.145s +2025-10-02 06:41:55,354 - 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 06:41:55,354 - 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 06:41:55,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1585 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:55,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 06:41:55,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 06:41:55,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 06:41:55,681 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:41:55,681 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:55,681 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64161 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35104 - "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 06:41:56,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 06:41:56,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 06:41:56,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 06:41:56,337 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:41:56,338 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:41:56,338 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64162 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:58169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:57,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 06:41:57,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 06:41:57,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.145s +2025-10-02 06:41:57,189 - 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 06:41:57,189 - 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 06:41:57,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35110 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35122 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35130 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:58,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 06:41:58,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 06:41:58,698 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:41:58,815 - 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 06:41:58,816 - 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 06:41:58,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:41:58,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 06:41:58,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 06:41: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.181s +2025-10-02 06:41:59,146 - 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 06:41:59,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 06:41:59,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35136 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:64893 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:00,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 06:42:00,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 06:42:00,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.150s +2025-10-02 06:42:00,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 06:42:00,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 06:42:00,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64894 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35152 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1448 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35158 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:01,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 06:42:01,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 06:42:01,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.165s +2025-10-02 06:42:01,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 06:42:01,536 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:01,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1449 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63552 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:42:02,237 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:42:02,237 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:42:02,290 - app.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 06:42:02,516 - 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 06:42:02,516 - 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 06:42:02,516 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:57251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63553 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35170 - "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 06:42:02,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 06:42:02,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 06:42:02,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.159s +2025-10-02 06:42:03,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:42:03,073 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:03,073 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45048 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45062 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45064 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45068 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45070 - "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 06:42:06,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 06:42:06,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 06:42:06,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:42:06,924 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:42:06,924 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:06,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1455 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:65064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:42:07,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 06:42:07,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 06:42:07,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.149s +2025-10-02 06:42:07,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:42:07,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:07,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64178 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45074 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:07,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 06:42:07,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 06:42:07,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.151s +2025-10-02 06:42:07,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:42:07,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:07,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:42:08,127 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:42:08,128 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:42:08,193 - app.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 06:42:08,418 - 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 06:42:08,419 - 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 06:42:08,419 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:65065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57256 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:08,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 06:42:08,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 06:42:08,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 06:42:08,752 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:42:08,752 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:08,752 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45076 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45084 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45088 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:10,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 06:42:10,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 06:42: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.161s +2025-10-02 06:42:11,077 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:42:11,077 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:11,077 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1459 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:11,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 06:42:11,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 06:42:11,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.147s +2025-10-02 06:42:11,623 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:42:11,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:11,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1460 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45100 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45116 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45128 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53218 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53234 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53236 - "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 06:42:16,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 06:42:16,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 06:42:16,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 06:42:16,811 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:42:16,812 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:16,812 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53244 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53246 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53262 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53264 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53272 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53282 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53298 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53304 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51634 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:22,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 06:42: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 06:42:22,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.138s +2025-10-02 06:42:22,646 - 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 06:42:22,646 - 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 06:42:22,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51635 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53320 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53334 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:37422 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37444 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64200 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37452 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:26,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 06:42:26,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 06:42:26,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.149s +2025-10-02 06:42:26,843 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:42:26,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:26,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64202 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54204 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37454 - "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 06:42:27,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 06:42:27,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 06:42:27,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.155s +2025-10-02 06:42:27,983 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:42:27,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:27,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54205 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37458 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37474 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51641 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42: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 06:42: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 06:42: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.156s +2025-10-02 06:42:29,257 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:42:29,257 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:29,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51642 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37492 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37514 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37522 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1611 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49560 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:42:33,766 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:42:33,794 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.731 +2025-10-02 06:42:33,875 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=104.731 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 06:42:33,875 - 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 06:42:33,876 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 175.119.234.181:1612 - "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 06:42:34,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 06:42:34,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 06:42:34,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.139s +2025-10-02 06:42:34,352 - 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 06:42:34,352 - 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 06:42:34,352 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49562 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49572 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49588 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51652 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54210 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49604 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49620 - "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 06:42:38,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 06:42:38,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 06:42:38,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 06:42:38,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 06:42:38,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 06:42:38,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54211 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:42:38,351 - 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 06:42:38,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=24.007 +2025-10-02 06:42:38,453 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=24.007 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 06:42:38,453 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.076s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.077s +2025-10-02 06:42:38,453 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 175.119.234.181:10196 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:1616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49626 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:39,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 06:42:39,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 06:42:39,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.160s +2025-10-02 06:42:39,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 06:42:39,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:39,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51654 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49628 - "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 06:42:40,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 06:42:40,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 06:42:40,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.149s +2025-10-02 06:42:40,370 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:42:40,370 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:40,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49642 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:65402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49644 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:41,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 06:42:41,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 06:42:42,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.158s +2025-10-02 06:42:42,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:42:42,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:42,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49656 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64251 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:43,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 06:42:43,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 06:42:43,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.156s +2025-10-02 06:42:43,850 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:42:43,851 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:43,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64252 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42766 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42778 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10200 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:44,682 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:44,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 06:42:44,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 06:42:44,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 06:42:44,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 06:42:44,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10201 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42780 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:45,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 06:42:45,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 06:42:45,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.146s +2025-10-02 06:42:45,219 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.146s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +2025-10-02 06:42:45,220 - 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 06:42:45,220 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53525 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42792 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54215 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:46,778 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:42:46,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 06:42:46,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.161s +2025-10-02 06:42:46,940 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:42:46,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 06:42:46,941 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1627 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42808 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42810 - "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 06:42:47,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 06:42:47,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 06:42:47,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.154s +2025-10-02 06:42:47,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 06:42:47,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 06:42:47,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54216 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:65519 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42826 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:48,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 06:42:48,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 06:42: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.155s +2025-10-02 06:42:48,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 06:42:48,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 06:42:48,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42838 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42854 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51032 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:50,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 06:42:50,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 06:42:50,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.151s +2025-10-02 06:42:51,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:42:51,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:51,031 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51033 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42856 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:64269 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:51,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 06:42:51,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 06:42:51,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.155s +2025-10-02 06:42:51,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 06:42:51,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 06:42:51,962 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64270 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42868 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42870 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42884 - "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 06:42:53,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 06:42:53,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 06:42:53,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.152s +2025-10-02 06:42:53,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:42:53,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:53,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35404 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35420 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.197.218.214:49293 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35426 - "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 06:42:55,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 06:42:55,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 06:42:55,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.157s +2025-10-02 06:42:55,725 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:42:55,726 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:55,726 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:49302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35436 - "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 06:42:56,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 06:42:56,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 06:42:56,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.152s +2025-10-02 06:42:56,415 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:42:56,415 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:56,415 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51039 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:42:57,059 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:42:57,060 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:42:57,107 - app.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 06:42:57,329 - 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 06:42:57,329 - 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 06:42:57,329 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:51040 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35460 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1501 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:51667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:58,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 06:42:58,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 06:42:58,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.160s +2025-10-02 06:42:58,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 06:42:58,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 06:42:58,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1502 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35466 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:42:59,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 06:42:59,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 06:42:59,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.166s +2025-10-02 06:42:59,324 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:42:59,324 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:42:59,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35480 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35486 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35488 - "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 06:43:01,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 06:43:01,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 06:43: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.157s +2025-10-02 06:43:01,499 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:43:01,499 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:01,499 - 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: 39.112.59.88:52118 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51045 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35498 - "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 06:43:02,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 06:43:02,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 06:43:02,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.147s +2025-10-02 06:43:02,911 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:43:02,911 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:02,911 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51046 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:43:02,957 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:43:02,979 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.129 +2025-10-02 06:43:03,049 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.129 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.069s +2025-10-02 06:43:03,049 - 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 06:43:03,049 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.070s +INFO: 39.112.59.88:52119 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.197.218.214:49488 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41024 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:03,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 06:43:03,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 06:43:03,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.157s +2025-10-02 06:43:03,801 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:43:03,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:03,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:49489 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54226 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41032 - "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 06:43:04,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 06:43:04,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 06:43:04,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 06:43:04,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:43:04,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:04,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54228 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:04,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 06:43:04,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 06:43:04,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.149s +2025-10-02 06:43:05,067 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:43:05,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:05,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41038 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41044 - "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 06:43:05,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 06:43:05,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 06:43:05,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.147s +2025-10-02 06:43:05,659 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:43:05,659 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:05,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41050 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10220 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41068 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41076 - "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 06:43:09,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 06:43:09,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 06:43:09,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.156s +2025-10-02 06:43:09,670 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:43:09,671 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:09,671 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10221 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41090 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:49605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:51676 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:10,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 06:43:10,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 06:43:10,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.179s +2025-10-02 06:43:10,347 - 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 06:43:10,347 - 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 06:43:10,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:49636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41098 - "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 06:43:10,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 06:43:10,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 06:43:10,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.152s +2025-10-02 06:43:10,825 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:43:10,825 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:10,826 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51677 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41106 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41114 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41130 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:64290 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:43:13,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 06:43:13,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 06:43:13,343 - app.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 06:43:13,570 - 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 06:43:13,570 - 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 06:43:13,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:1514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41132 - "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 06:43:13,754 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:43:13,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 06:43:13,794 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:43:13,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:43:13,914 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:13,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34804 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34816 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:16,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 06:43:16,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 06:43:16,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 06:43:16,491 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:43:16,491 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:16,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64291 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34832 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34848 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34856 - "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 06:43:18,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 06:43:18,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 06:43:18,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.164s +2025-10-02 06:43:18,188 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:43:18,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:18,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1658 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:18,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 06:43:18,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 06:43:18,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.157s +2025-10-02 06:43:18,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:43:18,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:18,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34868 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34870 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34872 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34886 - "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 06:43:21,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 06:43:21,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 06:43:21,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.161s +2025-10-02 06:43:21,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:43:21,533 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:21,533 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34894 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36852 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:24,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 06:43:24,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 06:43:24,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.175s +2025-10-02 06:43:24,603 - 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 06:43:24,603 - 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 06:43:24,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36868 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36878 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:51690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43: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 06:43: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 06:43:25,180 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:43:25,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:43:25,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:25,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:43:25,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 06:43:25,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 06:43:25,564 - app.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 06:43:25,795 - 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 06:43:25,795 - 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 06:43:25,795 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:1668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:51691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36892 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36896 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:36906 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10227 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36914 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36926 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:43:28,086 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:43:28,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 06:43:28,154 - app.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 06:43:28,378 - 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 06:43:28,378 - 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 06:43:28,378 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:1524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10228 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36934 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36942 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36958 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36968 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36976 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:32,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 06:43:32,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 06:43:32,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.160s +2025-10-02 06:43:32,222 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:43:32,223 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:32,223 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54243 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36978 - "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 06:43:33,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 06:43:33,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 06:43:33,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.159s +2025-10-02 06:43:33,213 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:43:33,213 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:33,213 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54244 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43: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 06:43: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 06:43:33,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.166s +2025-10-02 06:43:33,763 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:43:33,763 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:33,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57574 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57588 - "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 06:43: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 06:43: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 06:43:34,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.147s +2025-10-02 06:43:34,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:43:34,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:34,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57598 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:35,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 06:43:35,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 06:43:35,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.152s +2025-10-02 06:43:35,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:43:35,678 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:35,678 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57600 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57610 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57620 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10237 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:38,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 06:43:38,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 06:43:38,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.164s +2025-10-02 06:43:38,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:43:38,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:38,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10238 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57634 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57640 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57648 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54248 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57664 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:41,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 06:43:41,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 06:43:41,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.158s +2025-10-02 06:43:41,393 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:43:41,394 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:41,394 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54249 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1535 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:41,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 06:43:41,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 06:43:41,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.152s +2025-10-02 06:43:41,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 06:43:41,913 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:41,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1536 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57680 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57684 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57690 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:12336 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:43,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 06:43:43,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 06:43:43,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.159s +2025-10-02 06:43:44,102 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:43:44,102 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:44,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:12337 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42488 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42494 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42506 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42516 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42530 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1540 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42534 - "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 06:43:48,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 06:43:48,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 06:43:48,109 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:43:48,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:43:48,232 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:48,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1541 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:48,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 06:43:48,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 06:43:49,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.144s +2025-10-02 06:43:49,126 - 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 06:43:49,127 - 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 06:43:49,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54254 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42550 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42552 - "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 06:43:49,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 06:43:49,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 06:43:49,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.153s +2025-10-02 06:43:49,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:43:49,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:49,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54255 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:50,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 06:43:50,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 06:43:50,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.167s +2025-10-02 06:43:50,500 - 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 06:43:50,500 - 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 06:43:50,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42568 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:51,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 06:43:51,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 06:43:51,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.136s +2025-10-02 06:43:51,986 - 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 06:43:51,986 - 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 06:43:51,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42580 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42592 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42604 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:65240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52006 - "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 06:43:54,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 06:43: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 06:43:54,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.155s +2025-10-02 06:43:54,720 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:43:54,720 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:54,720 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:65241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10265 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52020 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52022 - "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 06:43: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 06:43: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 06:43:55,425 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:43:55,543 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:43:55,543 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:55,543 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:55,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 06:43:55,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 06:43:55,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.165s +2025-10-02 06:43:55,883 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:43:55,883 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:55,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57323 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52048 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:43:56,431 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:43:56,455 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.895 +2025-10-02 06:43:56,537 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.895 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:43:56,537 - 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 06:43:56,537 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 61.255.207.212:57324 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52054 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54259 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:58,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 06:43:58,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 06:43:58,223 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:43:58,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:43:58,347 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:58,347 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54260 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52062 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52072 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:43:59,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 06:43:59,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 06:43:59,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.161s +2025-10-02 06:43:59,517 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:43:59,517 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:43:59,517 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52078 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:43:59,893 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:43:59,929 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=107.079 +2025-10-02 06:44:00,004 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.079 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 06:44:00,004 - 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 06:44:00,004 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 61.255.207.212:57329 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52082 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52090 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52106 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1553 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:02,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 06:44:02,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 06:44:02,298 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:44:02,420 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:44:02,421 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:02,421 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1554 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52120 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10275 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:03,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 06:44:03,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 06:44:03,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.171s +2025-10-02 06:44:03,537 - 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 06:44:03,537 - 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 06:44:03,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10276 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52132 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:44:03,774 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:44:03,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=176.842 +2025-10-02 06:44:03,870 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=176.842 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 06:44:03,871 - 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 06:44:03,871 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.074s +INFO: 61.255.207.212:57336 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:60000 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60016 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60030 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:44:06,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 06:44:06,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 06:44:06,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.160s +2025-10-02 06:44:06,281 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:44:06,281 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:06,282 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54266 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60032 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:07,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 06:44:07,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 06:44:07,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.161s +2025-10-02 06:44:07,804 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:44:07,805 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:07,805 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60046 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60048 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60060 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60068 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:44:10,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 06:44: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 06:44:10,570 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:44:10,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 06:44:10,692 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:10,692 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60078 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60090 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10285 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:12,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 06:44:12,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 06:44:12,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.167s +2025-10-02 06:44:12,871 - 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 06:44:12,871 - 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 06:44:12,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60110 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54620 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54630 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:14,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 06:44:14,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 06:44:14,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.153s +2025-10-02 06:44:14,568 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:44:14,569 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:14,569 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54650 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10290 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:16,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 06:44:16,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 06:44:16,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.167s +2025-10-02 06:44:16,679 - 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 06:44:16,679 - 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 06:44:16,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10291 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54658 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54666 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54682 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54696 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54702 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54714 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54728 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:21,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 06:44:21,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 06:44:21,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.179s +2025-10-02 06:44:21,285 - 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 06:44:21,285 - 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 06:44:21,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54275 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54740 - "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 06:44:22,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 06:44:22,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 06:44:22,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.151s +2025-10-02 06:44:23,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:44:23,085 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:23,085 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54276 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57020 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57028 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57034 - "GET /api/v1/stats 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 06:44:25,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 06:44:25,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 06:44:25,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.189s +2025-10-02 06:44:25,372 - 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 06:44:25,372 - 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 06:44:25,372 - 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: 127.0.0.1:57044 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57062 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:57068 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57082 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:51186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:28,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 06:44:28,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 06:44: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.152s +2025-10-02 06:44:28,664 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:44:28,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 06:44:28,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57088 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10309 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57104 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57116 - "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 06:44:30,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 06:44:30,156 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:44:30,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.162s +2025-10-02 06:44:30,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:44:30,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:30,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10310 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57130 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54280 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57136 - "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 06:44:31,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 06:44:31,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 06:44:31,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 06:44:32,066 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:44:32,067 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:32,067 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54281 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57148 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57162 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56554 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:51329 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:44:34,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:44:34,212 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=35.149 +2025-10-02 06:44:34,288 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.149 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:44:34,288 - 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 06:44:34,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 175.119.234.181:1568 - "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 06:44:34,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 06:44:34,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 06:44:34,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.152s +2025-10-02 06:44:34,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:44:34,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 06:44:34,584 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51330 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57355 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56558 - "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 06:44:35,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 06:44:35,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 06:44:35,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.168s +2025-10-02 06:44:35,190 - 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 06:44:35,190 - 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 06:44:35,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57356 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56572 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56588 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:44:36,266 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:44:36,288 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.262 +2025-10-02 06:44:36,364 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.262 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:44:36,364 - 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 06:44:36,364 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 220.77.167.192:53546 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56590 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56600 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56602 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56610 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:51477 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:39,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 06:44:39,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 06:44:39,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.160s +2025-10-02 06:44:39,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:44:39,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:39,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51478 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:44:39,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 06:44:39,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 06:44: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.153s +2025-10-02 06:44:40,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 06:44:40,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:40,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54286 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1578 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:40,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 06:44:40,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 06:44:40,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.148s +2025-10-02 06:44:40,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 06:44:40,650 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:40,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1579 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56628 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56642 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56652 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56658 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:51615 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51966 - "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 06:44:44,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 06:44:44,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 06:44:44,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.151s +2025-10-02 06:44:44,401 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:44:44,402 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:44,402 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51616 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51982 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51986 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51994 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:46,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 06:44:46,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 06:44:46,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.167s +2025-10-02 06:44:46,818 - 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 06:44:46,819 - 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 06:44:46,819 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52002 - "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 06:44:47,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 06:44:47,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 06:44:47,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.151s +2025-10-02 06:44:47,436 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:44:47,436 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:47,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1584 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:47,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 06:44:47,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 06:44:47,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 06:44:47,772 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:44:47,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 06:44:47,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52018 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52024 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:51760 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:44:49,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 06:44:49,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 06:44:49,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.155s +2025-10-02 06:44:49,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:44:49,759 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:49,759 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52044 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52058 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52064 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52078 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33254 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33266 - "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 06:44:54,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 06:44:54,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 06:44:54,649 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:44:54,770 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:44:54,770 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:54,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33274 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:44:55,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 06:44:55,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 06:44:55,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +2025-10-02 06:44:56,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:44:56,104 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:56,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54298 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33280 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33284 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57375 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33286 - "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 06:44:57,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 06:44:57,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 06:44:57,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.152s +2025-10-02 06:44:57,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:44:57,646 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:44:57,646 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57376 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33296 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33312 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:33314 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33324 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33328 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33344 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57380 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33360 - "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 06:45:02,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 06:45:02,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 06:45:02,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.164s +2025-10-02 06:45:02,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:45:02,470 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:02,470 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57381 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33362 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39380 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:45:04,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 06:45:04,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 06:45:04,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 06:45:04,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:45:04,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:04,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39382 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39388 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39390 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39394 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39402 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39412 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57387 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:45:09,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 06:45:09,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 06:45:09,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:45:09,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:45:09,625 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:09,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57388 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39418 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39420 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54307 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39442 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39446 - "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 06:45:12,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 06:45:12,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 06:45:12,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.158s +2025-10-02 06:45:13,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:45:13,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:13,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54308 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52305 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:45:13,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 06:45:13,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 06:45:13,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.135s +2025-10-02 06:45:13,807 - 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 06:45:13,807 - 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 06:45:13,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52306 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45536 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45548 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45564 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45578 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45580 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1607 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:45:18,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 06:45:18,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 06:45:18,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 06:45:18,441 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:45:18,441 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:18,442 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1608 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45586 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45618 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45630 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45636 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45644 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43998 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44006 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57402 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44018 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:45:25,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 06:45:25,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 06:45:25,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.163s +2025-10-02 06:45:25,604 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:45:25,605 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:25,605 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57403 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44026 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44042 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44048 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44064 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44074 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:1626 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:45:28,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 06:45:28,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 06:45:28,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 06:45:29,001 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:45:29,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:29,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1627 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44078 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44094 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44114 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44116 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44124 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44136 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58458 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58470 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58476 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58486 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:45:36,422 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:45:36,443 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.339 +2025-10-02 06:45:36,526 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=100.339 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:45:36,526 - 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 06:45:36,528 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 211.197.218.214:53026 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:58490 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58496 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58502 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58506 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58514 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58526 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58536 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58552 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:45:43,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 06:45:43,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 06:45:43,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.162s +2025-10-02 06:45:43,475 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:45:43,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:43,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53233 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58566 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51058 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51064 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51074 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51088 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51098 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:45:48,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 06:45:48,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 06:45:48,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.151s +2025-10-02 06:45:48,621 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:45:48,622 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:48,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51110 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51116 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51124 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51138 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:45:51,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 06:45:51,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 06:45:51,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.176s +2025-10-02 06:45:51,424 - 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 06:45:51,424 - 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 06:45:51,424 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51152 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51158 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51162 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50116 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50136 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64561 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50148 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:53427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:45:56,092 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(634, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:45:56,105 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(634, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=32.822 +2025-10-02 06:45:56,183 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.822 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:45:56,184 - 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 06:45:56,184 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:63645 - "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 06:45:56,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 06:45:56,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 06:45:56,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.156s +2025-10-02 06:45:56,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:45:56,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:45:56,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:45:56,698 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:45:56,722 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=139.756 +2025-10-02 06:45:56,801 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=139.756 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:45:56,801 - 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 06:45:56,802 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 211.226.69.49:64562 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:50160 - "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 06:45:56,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 06:45:56,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 06:45: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.139s +2025-10-02 06:45:57,097 - 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 06:45:57,098 - 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 06:45:57,098 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50162 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50176 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50182 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50198 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:50210 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50226 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50230 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:01,059 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(667, 667, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:01,075 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(667, 667, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=77.378 +2025-10-02 06:46:01,151 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.378 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.075s +2025-10-02 06:46:01,151 - 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 06:46:01,151 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.076s +INFO: 61.255.207.212:63651 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:64580 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1663 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:01,686 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(600, 1128, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:01,708 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(600, 1128, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=90.092 +2025-10-02 06:46:01,786 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=90.092 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.077s +2025-10-02 06:46:01,786 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.077s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.080s +2025-10-02 06:46:01,788 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 211.226.69.49:64581 - "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 06:46:01,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 06:46:01,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 06:46:01,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.178s +2025-10-02 06:46:01,997 - 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 06:46:01,997 - 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 06:46:01,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50238 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50246 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35844 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35856 - "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 06:46:04,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 06:46:04,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 06:46: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.150s +2025-10-02 06:46:04,304 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:46:04,304 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:04,304 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63657 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:04,510 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:04,534 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.923 +2025-10-02 06:46:04,619 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=25.923 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:46:04,619 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:46:04,621 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:63658 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:35860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7615 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35872 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:06,501 - 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 06:46:06,543 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=46.383 +2025-10-02 06:46:06,635 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=46.383 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:46:06,635 - 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 06:46:06,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 175.119.234.181:7616 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:1670 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35884 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35896 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35900 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:46:08,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 06:46:08,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 06:46:08,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.178s +2025-10-02 06:46:08,838 - 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 06:46:08,838 - 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 06:46:08,839 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1671 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35904 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35914 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35920 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35928 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35944 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35946 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35948 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51042 - "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 06:46:15,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 06:46:15,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 06:46:15,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.174s +2025-10-02 06:46:16,081 - 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 06:46:16,081 - 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 06:46:16,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7622 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51050 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51062 - "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 06:46:16,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 06:46:16,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 06:46:16,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.162s +2025-10-02 06:46:16,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:46:16,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:16,717 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51066 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51082 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1689 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51114 - "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 06:46:21,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 06:46:21,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 06:46:21,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.188s +2025-10-02 06:46:21,761 - 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 06:46:21,761 - 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 06:46:21,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1690 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7629 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51128 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51144 - "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 06:46:22,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 06:46:22,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 06:46:22,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.162s +2025-10-02 06:46:22,970 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:46:22,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 06:46:22,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7630 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44496 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44502 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44514 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44520 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44536 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7636 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:46:28,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 06:46:28,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 06:46:28,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.155s +2025-10-02 06:46:28,790 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:46:28,790 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:28,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7637 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44548 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:46:29,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 06:46: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 06:46:29,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.141s +2025-10-02 06:46:29,511 - 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 06:46:29,512 - 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 06:46:29,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54350 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44570 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 211.226.69.49:64616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44580 - "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 06:46:30,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 06:46:30,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 06:46:30,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.135s +2025-10-02 06:46:31,090 - 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 06:46:31,091 - 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 06:46:31,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44586 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44602 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51256 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54317 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51266 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51272 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:46:35,157 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:46:35,182 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.964 +2025-10-02 06:46:35,261 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=78.964 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:46:35,261 - 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 06:46:35,264 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 220.77.167.192:54318 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:51280 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51296 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51312 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51314 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51324 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:54650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:46:39,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 06:46:39,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 06:46:39,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.147s +2025-10-02 06:46:39,766 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:46:39,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:39,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51326 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51330 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51346 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51352 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51366 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36014 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36022 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36038 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:54857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:46:45,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 06:46:45,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 06:46:45,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 06:46:45,953 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:46:45,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:45,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54858 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36042 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36050 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36060 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36068 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36074 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36086 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36092 - "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 06:46:50,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 06:46:50,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 06:46:50,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.152s +2025-10-02 06:46:50,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:46:50,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:50,655 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36094 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:55033 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:46:52,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 06:46:52,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 06:46:52,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.148s +2025-10-02 06:46:52,297 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:46:52,298 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:52,298 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55038 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36108 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:46:52,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 06:46:52,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 06:46:52,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.154s +2025-10-02 06:46:52,868 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:46:52,869 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:52,869 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36110 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36126 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37618 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37634 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37640 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37646 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:55208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37658 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:46:58,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 06:46:58,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 06:46:58,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.164s +2025-10-02 06:46:58,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:46:58,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:58,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:46:58,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 06:46:58,619 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:46:58,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.148s +2025-10-02 06:46:58,767 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:46:58,767 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:46:58,767 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54333 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37660 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37662 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37680 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37672 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:37690 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37706 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56606 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56622 - "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 06:47:05,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 06:47:05,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 06:47:05,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.155s +2025-10-02 06:47:05,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:47:05,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:05,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56640 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:50062 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:06,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 06:47:06,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 06:47:06,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.150s +2025-10-02 06:47:06,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:06,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:06,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50063 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56650 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56662 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52479 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:64685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47: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 06:47:08,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 06:47:08,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.135s +2025-10-02 06:47:08,154 - 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 06:47:08,155 - 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 06:47:08,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52480 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:08,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 06:47:08,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 06:47:08,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.170s +2025-10-02 06:47:08,482 - 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 06:47:08,483 - 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 06:47:08,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56678 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56686 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56702 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:55480 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57469 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:10,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 06:47:10,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 06:47:10,744 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 06:47:10,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:47:10,865 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:10,865 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55484 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56708 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:11,252 - 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 06:47:11,286 - 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.734 +2025-10-02 06:47:11,381 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=51.734 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.094s +2025-10-02 06:47:11,381 - 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 06:47:11,383 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.096s +INFO: 61.255.207.212:57470 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56722 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56726 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7681 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52484 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:47:12,943 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:12,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 06:47:12,993 - app.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 06:47:13,222 - 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 06:47:13,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 06:47:13,222 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:7682 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52485 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56732 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44210 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44220 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:15,255 - 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 06:47:15,281 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=66.969 +2025-10-02 06:47:15,362 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.969 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 06:47:15,362 - 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 06:47:15,363 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 61.255.207.212:57477 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:44222 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64693 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:16,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 06:47:16,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 06:47:16,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.170s +2025-10-02 06:47:16,374 - 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 06:47:16,374 - 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 06:47:16,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64694 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44234 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52489 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55677 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:16,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 06:47:16,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 06:47:16,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.150s +2025-10-02 06:47:17,052 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:17,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:17,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52490 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44236 - "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 06:47:17,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 06:47:17,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 06:47:17,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.138s +2025-10-02 06:47:17,327 - 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 06:47:17,327 - 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 06:47:17,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7686 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:17,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 06:47:17,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 06:47:18,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.150s +2025-10-02 06:47:18,122 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:18,122 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:18,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7687 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44250 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44264 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:18,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 06:47:18,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 06:47:18,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 06:47:18,914 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:18,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 06:47:18,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:19,130 - 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 06:47:19,151 - 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.795 +2025-10-02 06:47:19,240 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=53.795 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:47:19,241 - 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 06:47:19,243 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:57482 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:44280 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44288 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44300 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44310 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7694 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:22,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 06:47:22,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 06:47:22,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.164s +2025-10-02 06:47:22,480 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:47:22,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 06:47:22,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7695 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44314 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:22,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 06:47:22,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 06:47:22,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.151s +2025-10-02 06:47:22,954 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:47:22,954 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:22,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43544 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64721 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55910 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:47:24,550 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:24,550 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:47:24,605 - app.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 06:47:24,846 - 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 06:47:24,846 - 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 06:47:24,846 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:64722 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:55911 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43558 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43562 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57490 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:7701 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:25,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 06:47:25,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 06:47:25,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.171s +2025-10-02 06:47:26,117 - 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 06:47:26,117 - 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 06:47:26,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57491 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43572 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1770 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:50080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:47:26,635 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:26,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 06:47:26,691 - app.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 06:47:26,926 - 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 06:47:26,927 - 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 06:47:26,927 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:1771 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7702 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43574 - "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 06:47:27,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 06:47:27,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 06:47:27,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.152s +2025-10-02 06:47:27,268 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:47:27,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 06:47:27,269 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50081 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43584 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43600 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52525 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:28,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 06:47:28,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 06:47:29,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.147s +2025-10-02 06:47:29,146 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:47:29,146 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:29,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52526 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:7706 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:56089 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:30,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 06:47:30,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 06:47:30,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.158s +2025-10-02 06:47:30,565 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:47:30,566 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:30,566 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7707 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:30,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 06:47:30,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 06:47:30,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.152s +2025-10-02 06:47:30,890 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:47:30,890 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:30,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43622 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:31,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 06:47:31,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 06:47:31,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.142s +2025-10-02 06:47:31,374 - 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 06:47:31,374 - 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 06:47:31,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:31,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 06:47:31,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 06:47:31,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.154s +2025-10-02 06:47:31,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:47:31,672 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:31,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43624 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43636 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57495 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43644 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43654 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:33,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 06:47:33,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 06:47:33,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 06:47:33,187 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:47:33,188 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:33,188 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57496 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33474 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33486 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33494 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64733 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:47:35,167 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:35,167 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:47:35,221 - app.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 06:47:35,450 - 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 06:47:35,451 - 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 06:47:35,451 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:7712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:35,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 06:47:35,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 06:47:35,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.148s +2025-10-02 06:47:36,084 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:47:36,084 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:36,084 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64735 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33510 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33522 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:47:37,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 06:47:37,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 06:47:37,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.149s +2025-10-02 06:47:37,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:47:37,733 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:37,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33524 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33530 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:7717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1786 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:47:39,094 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:47:39,095 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:47:39,149 - app.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 06:47:39,377 - 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 06:47:39,377 - 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 06:47:39,378 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:7718 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1787 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33542 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:39,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 06:47:39,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 06:47: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.153s +2025-10-02 06:47:39,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:47:39,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:39,871 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33548 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64567 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:40,842 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:40,865 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=107.028 +2025-10-02 06:47:40,947 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=107.028 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:47:40,948 - 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 06:47:40,950 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:64568 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33562 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56400 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:42,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 06:47:42,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 06:47:42,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.153s +2025-10-02 06:47:42,657 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:47:42,657 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:42,657 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56401 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33574 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47: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 06:47:43,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 06:47:43,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.155s +2025-10-02 06:47:43,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:47:43,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:43,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:7722 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:50086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48760 - "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 06:47:43,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 06:47:43,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 06:47:43,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 06:47:43,762 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:43,762 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:43,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:7723 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:43,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 06:47:43,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 06:47:43,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.155s +2025-10-02 06:47:44,080 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:47:44,081 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:44,081 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48764 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48772 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64576 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:45,342 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:45,369 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.103 +2025-10-02 06:47:45,455 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=57.103 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:47:45,455 - 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 06:47:45,456 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 61.255.207.212:64577 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:48776 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52545 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:46,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 06:47:46,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 06:47:46,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.174s +2025-10-02 06:47:46,503 - 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 06:47:46,504 - 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 06:47:46,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52546 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48786 - "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 06:47:46,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 06:47:46,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 06:47:46,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.171s +2025-10-02 06:47:46,848 - 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 06:47:46,849 - 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 06:47:46,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48790 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:56417 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48796 - "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 06:47:48,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 06:47: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 06:47:48,173 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +2025-10-02 06:47:48,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 06:47:48,289 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:48,289 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56418 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48800 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64583 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:47:49,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:47:50,005 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.523 +2025-10-02 06:47:50,094 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=159.523 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 06:47:50,095 - 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 06:47:50,096 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:64584 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:1801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:48804 - "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 06:47:50,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 06:47:50,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 06:47:50,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.162s +2025-10-02 06:47:50,584 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:47:50,584 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:50,585 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48810 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48812 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63812 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:51,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 06:47:51,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 06:47:51,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.151s +2025-10-02 06:47:51,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 06:47:51,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 06:47:51,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63813 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:48818 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:48834 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60642 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60654 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:54,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:47:54,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 06:47: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.159s +2025-10-02 06:47:54,833 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:47:54,834 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:54,834 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60664 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1808 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60672 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:56,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 06:47:56,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 06:47:56,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:47:56,599 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:47:56,599 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:56,599 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1809 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54344 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:56,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 06:47:56,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 06:47:56,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.152s +2025-10-02 06:47:57,038 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:47:57,038 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:57,039 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:57,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 06:47:57,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 06:47:57,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.150s +2025-10-02 06:47:57,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:47:57,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:57,360 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54345 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60688 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60690 - "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 06:47:57,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 06:47:57,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 06:47:57,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.144s +2025-10-02 06:47:57,684 - 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 06:47:57,684 - 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 06:47:57,684 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52555 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:58,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 06:47:58,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 06:47:58,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.143s +2025-10-02 06:47:58,282 - 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 06:47:58,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 06:47:58,283 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60702 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63824 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:56661 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:59,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 06:47:59,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 06:47:59,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 06:47:59,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:47:59,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:47:59,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63825 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:47:59,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 06:47:59,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 06:47:59,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.148s +2025-10-02 06:48:00,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 06:48:00,043 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:00,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1813 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:50093 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:00,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 06:48:00,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 06:48:00,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.138s +2025-10-02 06:48:00,509 - 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 06:48:00,509 - 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 06:48:00,509 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60718 - "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 06:48:00,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 06:48:00,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 06:48:00,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.133s +2025-10-02 06:48:00,861 - 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 06:48:00,862 - 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 06:48:00,862 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50094 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60734 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60742 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63830 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52559 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64589 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60758 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:02,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 06:48:02,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 06:48:02,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.153s +2025-10-02 06:48:03,060 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:48:03,061 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:03,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63831 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60770 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:48:03,216 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:48:03,217 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:48:03,275 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.295s +2025-10-02 06:48:03,512 - 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 06:48:03,512 - 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 06:48:03,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64590 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52560 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39276 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39288 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39302 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:56809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54352 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39314 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63835 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48: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 06:48: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 06:48:06,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.181s +2025-10-02 06:48:06,659 - 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 06:48:06,660 - 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 06:48:06,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:56814 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39322 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:48:06,935 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:48:06,936 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:48:06,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.269s +2025-10-02 06:48:07,206 - 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 06:48:07,206 - 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 06:48:07,206 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:54353 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63836 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39328 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39340 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52564 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39342 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39358 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10441 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:10,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 06:48:10,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 06:48:10,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.182s +2025-10-02 06:48:10,659 - 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 06:48:10,659 - 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 06:48:10,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52565 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:48:10,781 - 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 06:48:10,802 - 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=32.988 +2025-10-02 06:48:10,881 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=32.988 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:48:10,881 - 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 06:48:10,883 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 175.119.234.181:10442 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:39374 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39382 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54359 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:11,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 06:48:11,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 06:48:12,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.164s +2025-10-02 06:48:12,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:48:12,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:12,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54360 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39396 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39412 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33880 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33908 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:50104 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33924 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52575 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:16,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 06:48: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 06:48:16,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.159s +2025-10-02 06:48:16,894 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:48:16,894 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:16,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:50105 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33938 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33946 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57155 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:18,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 06:48:18,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 06:48:18,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.168s +2025-10-02 06:48:18,385 - 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 06:48:18,386 - 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 06:48:18,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52576 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33948 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:18,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 06:48:18,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 06:48:18,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.149s +2025-10-02 06:48:18,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:48:18,687 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:18,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57164 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54365 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:48:19,414 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:48:19,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:48:19,467 - app.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 06:48:19,691 - 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 06:48:19,691 - 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 06:48:19,692 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:63853 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54366 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33956 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33958 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33962 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33968 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33976 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42034 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42048 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:57338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:24,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 06:48:24,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 06:48:24,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.142s +2025-10-02 06:48:24,895 - 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 06:48:24,895 - 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 06:48:24,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:57341 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42058 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57528 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42060 - "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 06:48:26,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 06:48: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 06:48:26,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.205s +2025-10-02 06:48:26,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.205s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +2025-10-02 06:48:26,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.205s (avg: 0.205s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:26,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57529 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:26,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 06:48:26,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 06:48:26,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.141s +2025-10-02 06:48:26,953 - 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 06:48:26,953 - 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 06:48:26,954 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54374 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42062 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42070 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42076 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42084 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:48:29,637 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:48:29,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=27.683 +2025-10-02 06:48:29,741 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=27.683 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:48:29,742 - 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 06:48:29,744 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 175.119.234.181:1823 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.226.69.49:64818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42094 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:56682 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:30,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 06:48:30,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 06:48:30,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.176s +2025-10-02 06:48:31,041 - 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 06:48:31,042 - 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 06:48:31,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57533 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:48:32,084 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:48:32,084 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:48:32,145 - app.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 06:48:32,382 - 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 06:48:32,382 - 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 06:48:32,383 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:57534 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:56683 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54379 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42104 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42108 - "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 06:48:32,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 06:48:32,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 06:48:32,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.156s +2025-10-02 06:48:32,998 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:48:32,998 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:32,998 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54380 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45108 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45120 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:45124 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45140 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45146 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1829 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48: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 06:48: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 06:48:36,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.151s +2025-10-02 06:48:36,396 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:48:36,396 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:36,396 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1830 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45150 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:37,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 06:48:37,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 06:48:37,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.163s +2025-10-02 06:48:37,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:48:37,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:37,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64605 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:48: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 06:48: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 06:48:38,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.156s +2025-10-02 06:48:38,469 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:48:38,469 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:38,469 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64606 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:38,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 06:48:38,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 06:48:38,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 06:48:38,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 06:48:38,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 06:48:38,800 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45168 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45182 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:64827 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45202 - "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 06:48:41,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 06:48:41,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 06:48:41,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.158s +2025-10-02 06:48:41,641 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:48:41,641 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:41,641 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64828 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45214 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45228 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45236 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64612 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48: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 06:48:43,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 06:48:43,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.158s +2025-10-02 06:48:44,014 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:48:44,015 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:44,015 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64613 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44836 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44842 - "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 06:48:45,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 06:48:45,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 06:48:45,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.163s +2025-10-02 06:48:45,465 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:48:45,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:45,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44854 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:56694 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:46,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 06:48:46,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 06:48:46,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 06:48:46,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 06:48:46,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 06:48:46,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56695 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44856 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:47,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 06:48:47,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 06:48:47,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.163s +2025-10-02 06:48:47,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 06:48:47,999 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:47,999 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44868 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1845 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44878 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48: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 06:48:49,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 06:48:49,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.153s +2025-10-02 06:48:49,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:48:49,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:49,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1846 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64618 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44882 - "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 06:48:50,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 06:48:50,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 06:48:50,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.155s +2025-10-02 06:48:50,500 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:48:50,501 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:50,501 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64619 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44892 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44908 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44932 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36870 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36880 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36896 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:48:57,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 06:48:57,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 06:48: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.158s +2025-10-02 06:48:57,586 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:48:57,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:48:57,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64860 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36908 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36910 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36914 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36918 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57569 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:01,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 06:49:01,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 06:49:01,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.172s +2025-10-02 06:49:01,354 - 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 06:49:01,354 - 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 06:49:01,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57570 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:54425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36928 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36934 - "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 06:49:01,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 06:49:01,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 06:49:01,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.147s +2025-10-02 06:49:02,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:49:02,046 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:02,046 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:54426 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36936 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:03,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 06:49:03,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 06:49:03,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.154s +2025-10-02 06:49:03,612 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:49:03,612 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:03,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47478 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47492 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:47500 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:49: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 06:49: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 06:49:06,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.152s +2025-10-02 06:49:06,808 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:49:06,809 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:06,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47514 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47520 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47532 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47548 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:09,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 06:49:09,181 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:09,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.152s +2025-10-02 06:49:09,333 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:49:09,334 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:09,334 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54410 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:09,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 06:49:09,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 06:49:09,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 06:49:09,726 - 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 06:49:09,727 - 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 06:49:09,727 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54411 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47562 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47576 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47592 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57579 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:11,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 06:49:11,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 06:49:11,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.171s +2025-10-02 06:49:11,607 - 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 06:49:11,607 - 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 06:49:11,607 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57580 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:64878 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47594 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:12,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 06:49:12,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:49:12,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.154s +2025-10-02 06:49:13,110 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:49:13,111 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:13,111 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64879 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:58269 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49: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 06:49:13,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 06:49:13,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.151s +2025-10-02 06:49:13,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:49:13,754 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:13,754 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58272 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1870 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:14,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 06:49:14,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 06:49:14,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.151s +2025-10-02 06:49:14,286 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:49:14,287 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:14,287 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1871 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54520 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54536 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54542 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54554 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54568 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54578 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:54430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64671 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:18,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 06:49:18,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 06:49:18,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.151s +2025-10-02 06:49:18,619 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:49:18,619 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:18,619 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:54431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54590 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:18,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 06:49: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 06:49:18,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.135s +2025-10-02 06:49:18,937 - 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 06:49:18,937 - 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 06:49:18,937 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64672 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1883 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:19,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 06:49:19,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 06:49:19,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.148s +2025-10-02 06:49:19,384 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:49:19,384 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:19,385 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1884 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:58368 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:19,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 06:49:19,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 06:49:19,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.160s +2025-10-02 06:49:20,059 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:49:20,059 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:20,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54594 - "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 06:49:20,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 06:49:20,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 06:49:20,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.146s +2025-10-02 06:49:20,372 - 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 06:49:20,372 - 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 06:49:20,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58371 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54596 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54610 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54624 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54626 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1889 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:24,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 06:49:24,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 06:49:24,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.159s +2025-10-02 06:49:24,196 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:49:24,196 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:24,197 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1890 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42700 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42716 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:64888 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49: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 06:49: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 06:49: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.153s +2025-10-02 06:49:25,040 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:49:25,040 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:25,041 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:64889 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42720 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42728 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:58513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:27,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 06:49:27,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 06:49:27,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.150s +2025-10-02 06:49:27,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:49:27,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:27,192 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58522 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42734 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42742 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42744 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:28,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 06:49:28,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 06:49:28,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 06:49:28,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 06:49:28,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:28,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1895 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:29,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 06:49: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 06:49:29,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.165s +2025-10-02 06:49:29,189 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:49:29,189 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:29,189 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42746 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42750 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42756 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42758 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:58616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:32,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 06:49:32,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 06:49:32,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.149s +2025-10-02 06:49:32,242 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:49:32,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:32,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42770 - "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 06:49:32,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 06:49:32,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 06:49:33,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.154s +2025-10-02 06:49:33,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:49:33,142 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:33,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:49:33,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 06:49:33,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 06:49: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.147s +2025-10-02 06:49:33,678 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:49:33,679 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:33,679 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58761 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35600 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35616 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35624 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35628 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 220.127.236.236:51235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35640 - "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 06:49:35,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 06:49:35,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 06:49:36,029 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:49:36,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 06:49:36,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:36,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35652 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35668 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1909 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:37,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 06:49:37,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 06:49:37,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.160s +2025-10-02 06:49:37,823 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:49:37,824 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:37,824 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1910 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35670 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35676 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35686 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:40,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 06:49:40,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 06:49:40,540 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.144s +2025-10-02 06:49:40,653 - 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 06:49:40,653 - 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 06:49:40,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63895 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35694 - "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 06:49:40,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 06:49:40,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 06:49:41,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.160s +2025-10-02 06:49:41,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:49:41,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:41,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35704 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:41,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 06:49:41,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 06:49:41,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.151s +2025-10-02 06:49:42,057 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:49:42,057 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:49:42,057 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35714 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35720 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47202 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47216 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47228 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63901 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47240 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:46,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 06:49:46,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 06:49:46,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.144s +2025-10-02 06:49:46,527 - 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 06:49:46,527 - 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 06:49:46,528 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63902 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47250 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:1920 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:47,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 06:49:47,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 06:49:47,571 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:49:47,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:49:47,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 06:49:47,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1921 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47252 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47268 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47272 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:58769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:49,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 06:49:49,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 06:49:49,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 06:49:50,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 06:49:50,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 06:49:50,023 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51249 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47288 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:49:50,692 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:49:50,692 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:49:50,745 - app.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 06:49:50,969 - 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 06:49:50,970 - 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 06:49:50,970 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:51250 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47294 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47298 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47300 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:53,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 06:49:53,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 06:49: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.174s +2025-10-02 06:49:53,361 - 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 06:49:53,362 - 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 06:49:53,362 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47302 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59594 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59608 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63914 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:49:55,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 06:49:55,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 06:49:55,193 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 06:49:55,304 - 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 06:49:55,305 - 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 06:49:55,305 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63915 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59620 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59626 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59634 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59646 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59660 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59672 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59686 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59698 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59714 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59724 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33726 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33730 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:33746 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:58776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50: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 06:50: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 06:50:05,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.148s +2025-10-02 06:50:05,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:50:05,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:05,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:05,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 06:50:05,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 06:50: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.146s +2025-10-02 06:50:05,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 06:50:05,690 - 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 06:50:05,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58778 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33772 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33782 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:07,196 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:07,219 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.000 +2025-10-02 06:50:07,311 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=34.000 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:50:07,311 - 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 06:50:07,313 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 220.77.167.192:53636 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33784 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33794 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:09,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:50:09,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 06:50: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.148s +2025-10-02 06:50:09,780 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:50:09,781 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:09,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33812 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33816 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33830 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33840 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33842 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54786 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51266 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:14,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 06:50:14,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 06:50:14,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.178s +2025-10-02 06:50:14,672 - 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 06:50:14,672 - 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 06:50:14,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54794 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54810 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53641 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:15,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 06:50:15,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 06:50:15,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.150s +2025-10-02 06:50:15,784 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:50:15,784 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:15,785 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53642 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54820 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8631 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:16,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 06:50:16,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 06:50:16,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.149s +2025-10-02 06:50:16,727 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:50:16,727 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:16,728 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8633 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52602 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54826 - "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 06:50:17,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 06:50:17,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 06:50:17,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.146s +2025-10-02 06:50:17,529 - 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 06:50:17,529 - 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 06:50:17,529 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52603 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54830 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54844 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54862 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:59506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:20,882 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:20,905 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.429 +2025-10-02 06:50:20,989 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=111.429 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:50:20,989 - 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 06:50:20,991 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 211.197.218.214:59509 - "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 06:50:21,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 06:50:21,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 06:50:21,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.151s +2025-10-02 06:50:21,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:50:21,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 06:50:21,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54876 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54886 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:58785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:22,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 06:50:22,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 06:50:22,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.152s +2025-10-02 06:50:22,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 06:50:22,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 06:50:22,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58786 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54902 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53646 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54914 - "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 06:50:23,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 06:50:23,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 06:50:23,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 06:50:23,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:50:23,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:23,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52609 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59740 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59746 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8642 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:25,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 06:50:25,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 06:50:25,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.162s +2025-10-02 06:50:25,255 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:50:25,255 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:25,256 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8643 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59756 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:25,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 06:50:25,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 06:50:25,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.158s +2025-10-02 06:50:25,765 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:50:25,766 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:25,766 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52610 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59766 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59772 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59786 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59792 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:59740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50: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 06:50: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 06:50:29,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.153s +2025-10-02 06:50:29,169 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:50:29,169 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:29,170 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59741 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:30,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 06:50:30,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 06:50:30,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.165s +2025-10-02 06:50:30,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 06:50:30,500 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:30,500 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:30,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 06:50:30,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 06:50:30,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.147s +2025-10-02 06:50:30,857 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:50:30,857 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:30,857 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59800 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59812 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59820 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59834 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59850 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60512 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:50:34,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 06:50:34,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 06:50:34,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.154s +2025-10-02 06:50:34,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 06:50:34,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:34,494 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51283 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60528 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60534 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:60544 - "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 06:50:35,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 06:50:35,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 06:50:35,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.161s +2025-10-02 06:50:35,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:50:35,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:35,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51284 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60546 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60548 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8653 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:58791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:37,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 06:50: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 06:50: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.154s +2025-10-02 06:50:37,660 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:50:37,661 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:37,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8654 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:37,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 06:50:37,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 06:50:37,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.150s +2025-10-02 06:50:38,045 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:50:38,045 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:38,045 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60552 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60560 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60576 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63940 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:39,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:39,813 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.224 +2025-10-02 06:50:39,903 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.224 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:50:39,903 - 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 06:50:39,905 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 61.255.207.212:63941 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:51288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60586 - "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 06:50:40,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 06:50:40,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 06:50:40,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.168s +2025-10-02 06:50:40,979 - 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 06:50:40,979 - 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 06:50:40,979 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:60602 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:60618 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:60624 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63947 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8660 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:60640 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:43,311 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:43,331 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.405 +2025-10-02 06:50:43,419 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=63.405 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:50:43,420 - 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 06:50:43,421 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:63948 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:52620 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:43,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 06:50:43,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 06:50:43,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.165s +2025-10-02 06:50:43,987 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:50:43,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:43,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8661 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:60142 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:44,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 06:50:44,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 06:50:44,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.145s +2025-10-02 06:50:44,375 - 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 06:50:44,375 - 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 06:50:44,375 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53657 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57816 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:50:44,532 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:50:44,532 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:50:44,584 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +2025-10-02 06:50:44,793 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.261s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +2025-10-02 06:50:44,793 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.261s (avg: 0.130s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:50:44,794 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52621 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:60147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57824 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51293 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:46,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 06:50:46,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 06:50:46,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.162s +2025-10-02 06:50:46,360 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:50:46,360 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:46,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51294 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57848 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:63952 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:46,738 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:50:46,761 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=35.885 +2025-10-02 06:50:46,844 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.885 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 06:50:46,844 - 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 06:50:46,846 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:63953 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57850 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8665 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57864 - "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 06:50:48,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 06:50:48,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:50:48,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.152s +2025-10-02 06:50:48,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:50:48,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:48,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8666 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57872 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57880 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57884 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57896 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51298 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57910 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:52,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 06:50:52,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 06:50:52,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.187s +2025-10-02 06:50:52,854 - 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 06:50:52,854 - 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 06:50:52,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51299 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63957 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57914 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:50:53,671 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:50:53,672 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:50:53,731 - app.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 06:50:53,964 - 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 06:50:53,964 - 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 06:50:53,964 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63958 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44676 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44680 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:58800 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:54,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 06:50:54,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 06:50:54,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.154s +2025-10-02 06:50:54,942 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:50:54,942 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:54,942 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58801 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44688 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:50:56,116 - 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 06:50:56,144 - 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.448 +2025-10-02 06:50:56,232 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.448 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:50:56,233 - 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 06:50:56,234 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 39.112.59.88:52626 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:44690 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64713 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:56,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 06:50:56,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 06:50:56,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.157s +2025-10-02 06:50:56,796 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:50:56,796 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:56,796 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64714 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44706 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44720 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51303 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44732 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50:58,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 06:50:58,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 06:50:58,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 06:50:58,515 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:50:58,516 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:50:58,516 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:50: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 06:50: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 06:50:58,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.145s +2025-10-02 06:50:58,969 - 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 06:50:58,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 06:50:58,970 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51304 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44736 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:51:00,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 06:51:00,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 06:51:00,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.149s +2025-10-02 06:51:00,158 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:51:00,158 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:00,158 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44744 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44752 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44772 - "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 06:51:03,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 06:51:03,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 06:51:03,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:51:03,179 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:03,179 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:03,179 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8685 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51422 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51428 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:04,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 06:51:04,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 06:51:04,804 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:51:04,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:51:04,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:04,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51444 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:05,200 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:05,217 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.467 +2025-10-02 06:51:05,302 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.467 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:51:05,302 - 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 06:51:05,304 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 175.119.234.181:10513 - "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 06:51:05,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 06:51:05,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 06:51:05,361 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:51:05,481 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:05,481 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:05,481 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51448 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51456 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51460 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:8691 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51466 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57637 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:07,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 06:51:07,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 06:51:07,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.172s +2025-10-02 06:51:07,723 - 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 06:51:07,723 - 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 06:51:07,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8692 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:07,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 06:51:07,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 06:51:07,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.154s +2025-10-02 06:51:08,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:08,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:08,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57638 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51470 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51486 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51314 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51496 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:60896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:10,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 06:51:10,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 06:51:10,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.153s +2025-10-02 06:51:10,433 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:51:10,433 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:10,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51315 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:10,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 06:51:10,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 06:51:10,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.155s +2025-10-02 06:51:10,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 06:51:10,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 06:51:10,744 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60897 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51502 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51516 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51524 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8696 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:51:12,515 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:51:12,516 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:51:12,569 - app.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 06:51:12,807 - 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 06:51:12,807 - 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 06:51:12,808 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8697 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51534 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:13,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 06:51:13,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 06:51:13,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.158s +2025-10-02 06:51:13,733 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:51:13,734 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:13,734 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57645 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34404 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34412 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:15,674 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:15,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:15,720 - app.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 06:51: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 06:51:15,844 - 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 06:51:15,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:15,871 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(1000, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:15,894 - 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=70.917 +2025-10-02 06:51:16,000 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=70.917 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.105s +2025-10-02 06:51:16,001 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.105s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-02 06:51:16,003 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +INFO: 211.226.69.49:65116 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:34424 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:51:16,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 06:51:16,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 06:51:16,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.159s +2025-10-02 06:51:16,908 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:51:16,909 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:16,909 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61076 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34438 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34454 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34460 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:34468 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8704 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:34480 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:65127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:63973 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:21,147 - 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 06:51:21,179 - 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.822 +2025-10-02 06:51:21,286 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=61.822 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.106s +2025-10-02 06:51:21,286 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.106s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.109s +2025-10-02 06:51:21,288 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.109s +INFO: 211.226.69.49:65129 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:34492 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:34494 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:61218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57651 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:51:21,477 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:51:21,478 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:51:21,534 - app.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 06:51:21,761 - 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 06:51:21,761 - 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 06:51:21,762 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8705 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63974 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:21,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 06:51:21,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 06:51:21,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.143s +2025-10-02 06:51:22,074 - 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 06:51:22,074 - 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 06:51:22,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57652 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:22,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 06:51:22,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 06:51:22,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 06:51:22,375 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:51:22,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:22,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34502 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51324 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:1965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:22,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 06:51:22,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 06:51:22,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.143s +2025-10-02 06:51:22,913 - 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 06:51:22,914 - 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 06:51:22,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51325 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:23,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 06:51:23,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 06:51:23,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.157s +2025-10-02 06:51:23,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 06:51:23,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 06:51:23,218 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:34506 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37114 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37118 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:51: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 06:51: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 06:51:25,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.167s +2025-10-02 06:51:25,371 - 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 06:51:25,372 - 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 06:51:25,372 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37124 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8710 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:26,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 06:51:26,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 06:51: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.152s +2025-10-02 06:51:26,498 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:51:26,498 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:26,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8711 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37140 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37156 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37170 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:29,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 06:51:29,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 06:51:29,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.154s +2025-10-02 06:51:29,208 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:51:29,208 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:29,209 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57657 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:30,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 06:51:30,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 06:51:30,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.164s +2025-10-02 06:51:30,239 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:51:30,239 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:30,239 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8715 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37174 - "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 06:51:30,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 06:51:30,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 06:51: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.151s +2025-10-02 06:51:30,921 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:51:30,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:30,922 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8716 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53666 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37180 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37182 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:37194 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:63990 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:61524 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:33,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 06:51:33,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 06:51:33,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.180s +2025-10-02 06:51:33,525 - 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 06:51:33,526 - 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 06:51:33,526 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53667 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46132 - "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 06:51:34,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 06:51:34,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 06:51:34,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.160s +2025-10-02 06:51:34,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 06:51:34,236 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:34,237 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63991 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:34,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 06:51:34,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 06:51:34,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.176s +2025-10-02 06:51:34,582 - 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 06:51:34,582 - 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 06:51:34,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61535 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46136 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46150 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:51:35,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 06:51:35,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 06:51:35,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.150s +2025-10-02 06:51:35,721 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:51:35,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:35,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57664 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46158 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1988 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:36,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 06:51:36,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 06:51:36,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.163s +2025-10-02 06:51:36,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:51:36,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:36,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1989 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:63997 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46162 - "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 06:51:36,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 06:51:36,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 06:51:36,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.169s +2025-10-02 06:51:36,983 - 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 06:51:36,983 - 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 06:51:36,983 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:63998 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46172 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46178 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:46180 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46188 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:38,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 06:51:38,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 06:51:39,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.163s +2025-10-02 06:51:39,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 06:51:39,144 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:39,145 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:39,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 06:51:39,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 06:51: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.168s +2025-10-02 06:51:39,709 - 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 06:51:39,709 - 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 06:51:39,709 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46192 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:61615 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:40,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 06:51:40,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 06:51:40,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 06:51:40,483 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:51:40,483 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:40,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:40,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 06:51:40,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 06:51:40,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.170s +2025-10-02 06:51:41,047 - 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 06:51:41,047 - 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 06:51:41,048 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61616 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46200 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46206 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:65157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46210 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:1994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:42,564 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:51:42,565 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:51:42,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.145s +2025-10-02 06:51:42,710 - 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 06:51:42,711 - 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 06:51:42,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51: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 06:51: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 06:51:42,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.164s +2025-10-02 06:51:43,035 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:51:43,035 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:43,035 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:1995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46224 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35934 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52659 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35942 - "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 06:51: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 06:51: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 06:51:44,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.169s +2025-10-02 06:51:45,041 - 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 06:51:45,042 - 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 06:51:45,042 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52660 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35958 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53677 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35962 - "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 06:51: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 06:51: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 06:51:46,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.176s +2025-10-02 06:51:46,966 - 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 06:51:46,966 - 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 06:51:46,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53678 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35978 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:61747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35994 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36000 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:48,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 06:51:48,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 06:51:48,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.193s +2025-10-02 06:51:48,760 - 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 06:51:48,760 - 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 06:51:48,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61758 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:1999 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:49,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 06:51:49,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 06:51:49,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.163s +2025-10-02 06:51:49,412 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:51:49,413 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:49,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2000 - "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: 175.119.234.181:58810 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:65163 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:49,816 - 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 06:51:49,841 - 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.558 +2025-10-02 06:51:49,928 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.558 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 06:51:49,928 - 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 06:51:49,930 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 175.119.234.181:58811 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36010 - "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 06:51:50,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 06:51:50,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 06:51:50,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.167s +2025-10-02 06:51:50,307 - 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 06:51:50,308 - 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 06:51:50,308 - 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: 61.255.207.212:64731 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:50,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 06:51:50,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 06:51:50,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.162s +2025-10-02 06:51:50,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:51:50,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:50,790 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65164 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:50,910 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:50,930 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=11.808 +2025-10-02 06:51:51,014 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.808 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:51:51,014 - 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 06:51:51,016 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:64732 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36026 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36034 - "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 06:51:51,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 06:51:51,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 06:51:51,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.154s +2025-10-02 06:51:51,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 06:51:51,449 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:51,449 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64025 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:51,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 06:51:51,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 06:51:51,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.166s +2025-10-02 06:51:51,773 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:51:51,773 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:51,773 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36042 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43302 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43314 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53682 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:54,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 06:51:54,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 06:51:54,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.194s +2025-10-02 06:51:54,817 - 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 06:51:54,817 - 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 06:51:54,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53683 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64740 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:55,056 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:51:55,077 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=11.532 +2025-10-02 06:51:55,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=11.532 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:51:55,156 - 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 06:51:55,156 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:64741 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:2005 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:56,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 06:51:56,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 06:51:56,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.289s +2025-10-02 06:51:56,986 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.289s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.289s (avg: 0.289s/image) +2025-10-02 06:51:56,987 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.289s (avg: 0.289s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:56,987 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2006 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43330 - "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 06:51:57,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 06:51:57,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 06:51:57,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.145s +2025-10-02 06:51:57,495 - 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 06:51:57,495 - 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 06:51:57,495 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43334 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51339 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:58,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 06:51:58,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 06:51:58,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.149s +2025-10-02 06:51:59,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:51:59,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:51:59,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51340 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43342 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:51:59,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 06:51:59,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 06:51:59,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.155s +2025-10-02 06:51:59,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 06:51:59,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 06:51:59,660 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:51:59,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 06:51:59,716 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=15.615 +2025-10-02 06:51:59,801 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=15.615 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:51:59,801 - 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 06:51:59,802 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:64746 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 39.112.59.88:52677 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43344 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:00,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 06:52:00,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 06:52:00,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.164s +2025-10-02 06:52:00,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:52:00,564 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:00,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52678 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53687 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:01,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 06:52:01,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 06:52:01,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.155s +2025-10-02 06:52:01,256 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:52:01,256 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:01,257 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53688 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:58816 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43346 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10566 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:52:01,859 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:01,860 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:01,912 - app.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 06:52:02,136 - 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 06:52:02,136 - 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 06:52:02,137 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:58817 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10567 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43352 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43356 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:03,408 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:52:03,430 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.479 +2025-10-02 06:52:03,515 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=64.479 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:52:03,515 - 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 06:52:03,516 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:57675 - "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 06:52:03,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 06:52:03,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 06:52:03,583 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 06:52:03,711 - 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 06:52:03,711 - 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 06:52:03,711 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:4225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33028 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:04,162 - 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 06:52:04,186 - 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=95.192 +2025-10-02 06:52:04,259 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.192 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 06:52:04,260 - 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 06:52:04,260 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +INFO: 175.119.234.181:4226 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33030 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33036 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33044 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51344 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:06,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 06:52:06,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 06:52:06,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.174s +2025-10-02 06:52:06,337 - 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 06:52:06,337 - 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 06:52:06,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52686 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:62278 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:06,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 06:52:06,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 06:52:06,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.147s +2025-10-02 06:52:06,729 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:52:06,729 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:06,730 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51345 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53692 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:52:07,072 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:07,073 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:07,141 - app.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 06:52:07,392 - 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 06:52:07,392 - 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 06:52:07,392 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:62287 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53693 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57680 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33054 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:07,804 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:52:07,840 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.906 +2025-10-02 06:52:07,918 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=48.906 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 06:52:07,918 - 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 06:52:07,919 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.079s +INFO: 61.255.207.212:57681 - "POST /api/v1/run_plugin_gen_image 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:33058 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:65208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:09,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 06:52:09,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 06:52:09,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.180s +2025-10-02 06:52:09,881 - 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 06:52:09,881 - 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 06:52:09,882 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33066 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2015 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:52:10,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 06:52:10,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 06:52:10,513 - app.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 06:52:10,759 - 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 06:52:10,759 - 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 06:52:10,759 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:2016 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:65209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33072 - "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 06:52:10,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 06:52:10,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:10,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.140s +2025-10-02 06:52:11,096 - 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 06:52:11,096 - 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 06:52:11,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57685 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:11,376 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:52:11,395 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.937 +2025-10-02 06:52:11,468 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.937 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.072s +2025-10-02 06:52:11,469 - 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 06:52:11,469 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.073s +INFO: 61.255.207.212:57686 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33074 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33084 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:12,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 06:52: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 06:52:12,765 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 06:52:12,887 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:52:12,888 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:12,888 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33094 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38600 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51351 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:14,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 06:52:14,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 06:52:14,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.155s +2025-10-02 06:52:14,688 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:52:14,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:14,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51352 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38610 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:15,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 06:52:15,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 06:52:15,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.152s +2025-10-02 06:52:15,182 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:52:15,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:15,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38618 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38624 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2020 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38628 - "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 06:52: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 06:52:17,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 06:52:17,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.175s +2025-10-02 06:52:17,846 - 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 06:52:17,846 - 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 06:52:17,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2021 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53702 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:18,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 06:52:18,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 06:52:18,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.145s +2025-10-02 06:52:18,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 06:52:18,171 - 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 06:52:18,171 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38630 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38632 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:52:18,341 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:18,342 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:18,391 - app.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 06:52:18,606 - 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 06:52:18,607 - 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 06:52:18,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:57691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53703 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38644 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38658 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:65222 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38674 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38680 - "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 06:52:21,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 06:52:21,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 06:52:21,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.168s +2025-10-02 06:52:21,551 - 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 06:52:21,552 - 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 06:52:21,552 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65223 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52: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 06:52: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 06:52:21,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.146s +2025-10-02 06:52:22,046 - 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 06:52:22,046 - 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 06:52:22,047 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38696 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38708 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2027 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:24,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 06:52:24,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 06:52:24,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.167s +2025-10-02 06:52:24,183 - 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 06:52:24,183 - 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 06:52:24,183 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2028 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46994 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47008 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8296 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:52:25,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 06:52:25,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 06:52:25,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 06:52:25,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 06:52:25,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:25,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8297 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47022 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:52:25,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 06:52:25,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=95.436 +2025-10-02 06:52:25,833 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=95.436 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.081s +2025-10-02 06:52:25,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.084s +2025-10-02 06:52:25,835 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 220.77.167.192:54451 - "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 06:52:26,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 06:52:26,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 06:52:26,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.160s +2025-10-02 06:52:26,356 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:52:26,356 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:26,356 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57700 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47026 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10592 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:27,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 06:52:27,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 06:52: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.139s +2025-10-02 06:52:27,430 - 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 06:52:27,431 - 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 06:52:27,431 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10593 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47032 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47034 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:47050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:65232 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:28,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 06:52:28,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 06:52: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.173s +2025-10-02 06:52:28,382 - 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 06:52:28,382 - 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 06:52:28,382 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47056 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52: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 06:52: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 06:52:30,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 06:52:30,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 06:52:30,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 06:52:30,411 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2037 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47060 - "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 06:52:30,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 06:52:30,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 06:52:30,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.166s +2025-10-02 06:52:30,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 06:52:30,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 06:52:30,989 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2038 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47076 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47082 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8302 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:32,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 06:52:32,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 06:52:32,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 06:52:32,376 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:52:32,376 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:32,376 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8303 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47092 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:32,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 06:52:32,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 06:52:32,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.161s +2025-10-02 06:52:32,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:52:32,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:32,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45036 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181: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 06:52:34,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 06:52:34,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 06:52:34,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.152s +2025-10-02 06:52:34,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 06:52:34,337 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:34,337 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58826 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45048 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45060 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45068 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45080 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2043 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:37,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 06:52:37,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 06:52: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.169s +2025-10-02 06:52:37,398 - 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 06:52:37,398 - 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 06:52:37,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2044 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45096 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45106 - "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 06:52:38,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 06:52:38,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 06:52:38,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.154s +2025-10-02 06:52:38,235 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:52:38,235 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:38,235 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45116 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53716 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45122 - "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 06:52: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 06:52:39,928 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:52:39,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.162s +2025-10-02 06:52:40,091 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:52:40,091 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:40,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53717 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45134 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45150 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45152 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45166 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2052 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:43,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 06:52:43,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 06:52:43,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.169s +2025-10-02 06:52:43,760 - 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 06:52:43,760 - 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 06:52:43,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2053 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42812 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42824 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51372 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:45,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 06:52:45,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 06:52:45,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.154s +2025-10-02 06:52:45,974 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:52:45,975 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:45,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51373 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42838 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:65266 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52719 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:46,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 06:52:46,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 06:52:46,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.167s +2025-10-02 06:52:46,851 - 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 06:52:46,851 - 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 06:52:46,851 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65267 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42864 - "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 06:52:47,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 06:52:47,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 06:52:47,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.166s +2025-10-02 06:52:47,749 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:52:47,750 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:47,750 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52720 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42872 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8323 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:58838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42880 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:49,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 06:52:49,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 06:52:49,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 06:52:49,416 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:52:49,417 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:49,417 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:49,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 06:52:49,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 06:52:49,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 06:52:49,753 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:52:49,753 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:49,753 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8324 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:49,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 06:52:49,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 06:52:49,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.157s +2025-10-02 06:52:50,079 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:52:50,079 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:50,080 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2060 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42888 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42890 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42900 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42904 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:52:52,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 06:52:52,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 06:52:52,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.164s +2025-10-02 06:52:52,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 06:52:52,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 06:52:52,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51377 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64768 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42908 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42918 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:52:53,253 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:52:53,254 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:52:53,295 - app.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 06:52:53,512 - 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 06:52:53,512 - 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 06:52:53,512 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:64769 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51378 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58528 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58540 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:55,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 06:52:55,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 06:52:55,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.173s +2025-10-02 06:52:55,679 - 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 06:52:55,680 - 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 06:52:55,680 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2064 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:56,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 06:52:56,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 06:52:56,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.163s +2025-10-02 06:52:56,363 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:52:56,364 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:56,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2065 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58550 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58566 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53727 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:56,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 06:52:56,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 06:52:56,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.158s +2025-10-02 06:52:57,093 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:52:57,093 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:52:57,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53728 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58574 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:65276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:57,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 06:52:57,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 06:52:58,019 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:52:58,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 06:52:58,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 06:52:58,140 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58578 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:63649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:58,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:52:58,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 06:52:58,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.159s +2025-10-02 06:52:58,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 06:52:58,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 06:52:58,964 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:63654 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57718 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8342 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58592 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:52:59,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 06:52: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 06:52:59,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.155s +2025-10-02 06:52:59,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 06:52:59,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 06:52:59,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57719 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58608 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:58622 - "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 06:52:59,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 06:52:59,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 06:52:59,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.141s +2025-10-02 06:52:59,889 - 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 06:52:59,889 - 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 06:52:59,890 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8343 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:58843 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58624 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53: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 06:53: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 06:53:00,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 06:53:00,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:53:00,956 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:00,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:58844 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58636 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51382 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58652 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53732 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41250 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:03,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:03,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:03,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.169s +2025-10-02 06:53:03,974 - 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 06:53:03,975 - 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 06:53:03,975 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41254 - "GET /api/v1/realtime_status 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 06:53: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 06:53:04,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 06:53:04,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.158s +2025-10-02 06:53:04,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:53:04,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 06:53:04,817 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51383 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57725 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41270 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:05,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 06:53:05,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 06:53:05,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.172s +2025-10-02 06:53:05,807 - 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 06:53:05,807 - 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 06:53:05,808 - 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: 127.0.0.1:41286 - "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 06:53:06,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 06:53: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 06:53:06,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.167s +2025-10-02 06:53:06,501 - 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 06:53:06,501 - 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 06:53:06,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53733 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:06,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 06:53:06,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 06:53:06,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.160s +2025-10-02 06:53:06,943 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:53:06,943 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:06,944 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57726 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41296 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:65288 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64059 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41304 - "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 06:53:07,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 06:53:07,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 06:53:07,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.167s +2025-10-02 06:53:08,012 - 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 06:53:08,012 - 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 06:53:08,012 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65289 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:53:08,047 - 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 06:53:08,072 - 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.261 +2025-10-02 06:53:08,156 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.261 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:53:08,156 - 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 06:53:08,158 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:64060 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:41314 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41316 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8358 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41318 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53: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 06:53: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 06: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.169s +2025-10-02 06:53:10,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 06:53:10,600 - 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 06:53:10,601 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8359 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:41332 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:41336 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:41340 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:41354 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:53:13,181 - 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 06:53:13,207 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=84.320 +2025-10-02 06:53:13,294 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=84.320 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:53:13,295 - 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 06:53:13,296 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:64067 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:37344 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8364 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52745 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37352 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53738 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37366 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:65295 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37368 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:53:16,189 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:53:16,190 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:53:16,251 - app.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 06:53:16,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 06:53:16,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:53:16,490 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:8368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53739 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:16,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 06:53:16,675 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:16,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.169s +2025-10-02 06:53:16,844 - 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 06:53:16,845 - 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 06:53:16,845 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52746 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37380 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64071 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:17,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 06:53:17,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 06:53:17,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.175s +2025-10-02 06:53:17,437 - 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 06:53:17,437 - 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 06:53:17,437 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65296 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37390 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37402 - "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 06:53:18,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 06:53:18,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 06:53:18,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.176s +2025-10-02 06:53:18,696 - 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 06:53:18,696 - 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 06:53:18,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:53:19,500 - 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 06:53:19,542 - 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=72.086 +2025-10-02 06:53:19,630 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=72.086 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:53:19,630 - 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 06:53:19,632 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:64072 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:37424 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8383 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:20,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 06:53:20,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 06:53:20,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.163s +2025-10-02 06:53:20,776 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:53:20,776 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:20,776 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8384 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:37428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:37438 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52750 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:37450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:22,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 06:53:22,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 06:53: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 06:53:22,902 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:53:22,902 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:22,902 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52751 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56164 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57747 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53: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 06:53: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 06:53:23,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 06:53:24,099 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:53:24,099 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:24,100 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53: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 06:53: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 06:53:24,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 06:53:24,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:53:24,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:24,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57748 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51390 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54476 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56168 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56172 - "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 06:53:25,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 06:53:25,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 06:53:25,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.164s +2025-10-02 06:53:25,202 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:53:25,202 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:25,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51391 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:25,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 06:53:25,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 06:53:25,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.151s +2025-10-02 06:53:25,537 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:53:25,537 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:25,537 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54477 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56188 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8391 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:26,683 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:53:26,684 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:26,719 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:53:26,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 06:53:26,844 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:26,844 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8392 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56196 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:65308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56204 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56214 - "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 06:53:28,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 06:53:28,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 06:53:28,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.177s +2025-10-02 06:53:28,689 - 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 06:53:28,689 - 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 06:53:28,689 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56222 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56224 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51395 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:30,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 06:53:30,308 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:30,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.166s +2025-10-02 06:53:30,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 06:53:30,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 06:53:30,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51396 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8396 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56234 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56240 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:56244 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56252 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:32,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 06:53:32,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 06:53:32,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.196s +2025-10-02 06:53:32,682 - 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 06:53:32,683 - 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 06:53:32,683 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56254 - "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 06:53: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 06:53:33,216 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:53:33,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.157s +2025-10-02 06:53:33,374 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:53:33,374 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:33,374 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8397 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:33,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 06:53:33,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 06:53: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.173s +2025-10-02 06:53:33,721 - 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 06:53:33,721 - 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 06:53:33,721 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33122 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33124 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:58858 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54481 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:53:34,617 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:53:34,618 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:53:34,683 - app.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 06:53:34,919 - 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 06:53:34,920 - 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 06:53:34,920 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:58859 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54482 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33142 - "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 06:53:36,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 06:53:36,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 06:53: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.163s +2025-10-02 06:53:36,306 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:53:36,306 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:36,306 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33152 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33156 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:53:37,155 - 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 06:53:37,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.801 +2025-10-02 06:53:37,267 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.801 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:53:37,267 - 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 06:53:37,269 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 175.119.234.181:2075 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33172 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33176 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 06:53:40,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 06:53:40,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 06:53:40,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.170s +2025-10-02 06:53:40,202 - 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 06:53:40,202 - 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 06:53:40,202 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53754 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33184 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33192 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8410 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:41,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 06:53:41,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 06:53:41,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 06:53:41,317 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:53:41,318 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:41,318 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33202 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:41,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 06:53:41,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 06:53:41,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.162s +2025-10-02 06:53:41,651 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:53:41,651 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:41,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33208 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:42,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 06:53:42,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 06:53:42,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.149s +2025-10-02 06:53:43,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:53:43,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:43,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33216 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33222 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38510 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8394 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:44,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 06:53:44,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 06:53:44,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.148s +2025-10-02 06:53:44,922 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:53:44,922 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:44,923 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8395 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57762 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38524 - "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 06:53:45,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 06:53:45,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 06:53:45,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.158s +2025-10-02 06:53:45,585 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:53:45,586 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:45,586 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57763 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:46,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 06:53: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 06:53:46,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.159s +2025-10-02 06:53:46,245 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:53:46,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:46,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38538 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38552 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:46,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 06:53:46,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 06:53:47,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.137s +2025-10-02 06:53:47,133 - 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 06:53:47,133 - 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 06:53:47,133 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38572 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:8411 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38584 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38592 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38594 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:52182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38606 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53763 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:51,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 06:53:51,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 06:53:51,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.178s +2025-10-02 06:53:52,024 - 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 06:53:52,024 - 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 06:53:52,024 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38616 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38618 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57767 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:53:52,609 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:53:52,610 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:53:52,677 - app.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 06:53:52,930 - 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 06:53:52,931 - 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 06:53:52,931 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53764 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:53,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 06:53:53,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 06:53:53,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.155s +2025-10-02 06:53:53,275 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:53:53,275 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:53,275 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8412 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:53,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 06:53:53,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 06:53:53,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.156s +2025-10-02 06:53:53,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:53:53,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:53,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55282 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:53,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 06:53:53,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 06:53:53,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.162s +2025-10-02 06:53:53,909 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:53:53,910 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:53,910 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57768 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2091 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:54,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 06:53:54,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 06:53:54,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.157s +2025-10-02 06:53:54,460 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:53:54,460 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:53:54,460 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2092 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55294 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55308 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55332 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55346 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53769 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:8428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:53:58,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 06:53:58,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 06:53:58,376 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:53:58,501 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:53:58,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 06:53:58,502 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:53:58,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 06:53:58,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 06:53:58,763 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.322s +2025-10-02 06:53:59,013 - 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 06:53:59,014 - 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 06:53:59,014 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:51421 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:8429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55354 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55360 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:65074 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:54:00,526 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:00,527 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:00,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.293s +2025-10-02 06:54:00,820 - 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 06:54:00,821 - 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 06:54:00,821 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:65075 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55372 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55384 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55388 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:55398 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55408 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:8434 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53774 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33362 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33364 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33370 - "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 06:54:05,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 06:54:05,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 06:54:05,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.183s +2025-10-02 06:54:05,497 - 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 06:54:05,498 - 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 06:54:05,498 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:8435 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:05,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 06:54:05,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 06:54:05,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.156s +2025-10-02 06:54:05,827 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:54:05,828 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:05,828 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51426 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33386 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33400 - "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 06:54:06,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 06:54:06,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 06:54:07,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.165s +2025-10-02 06:54:07,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 06:54:07,155 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:07,155 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53775 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33408 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33422 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33426 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:52187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33428 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4486 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:10,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 06:54:10,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 06:54: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.172s +2025-10-02 06:54:10,707 - 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 06:54:10,708 - 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 06:54:10,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51430 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33434 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33442 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:54:11,366 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:11,367 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:11,425 - app.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 06:54:11,656 - 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 06:54:11,656 - 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 06:54:11,656 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:52188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51431 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:12,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 06:54:12,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 06:54: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.175s +2025-10-02 06:54:12,866 - 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 06:54:12,866 - 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 06:54:12,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4487 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33458 - "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 06:54:13,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 06:54:13,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 06:54:13,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 06:54:13,479 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:54:13,479 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:13,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:65420 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45692 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:14,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 06:54:14,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 06:54:14,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 06:54:14,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 06:54:14,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 06:54:14,233 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45704 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45706 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2111 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45712 - "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 06:54:16,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 06:54:16,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 06:54:16,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.157s +2025-10-02 06:54:16,353 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:54:16,353 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:16,353 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2112 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45728 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45740 - "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 06:54:17,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 06:54:17,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 06:54:17,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.161s +2025-10-02 06:54:17,971 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:54:17,971 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:17,971 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:4491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57788 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45746 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:54:18,587 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:18,587 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:18,648 - app.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 06:54:18,882 - 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 06:54:18,883 - 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 06:54:18,883 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:4492 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57789 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45752 - "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 06:54:19,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 06:54:19,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 06:54:19,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.151s +2025-10-02 06:54:19,369 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:54:19,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 06:54:19,370 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45762 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2116 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45776 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:21,511 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:21,512 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:21,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.165s +2025-10-02 06:54:21,677 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:54:21,677 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:21,677 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2117 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:22,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 06:54:22,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 06:54:22,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.184s +2025-10-02 06:54:22,805 - 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 06:54:22,805 - 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 06:54:22,806 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53786 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45780 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4496 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:23,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 06:54:23,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 06:54:23,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.156s +2025-10-02 06:54:23,905 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:54:23,905 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:23,905 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4497 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44258 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44264 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44266 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44282 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44292 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44302 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4501 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44306 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:28,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 06:54:28,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 06:54:28,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.163s +2025-10-02 06:54:28,588 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:54:28,588 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:28,588 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4502 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:28,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 06:54:28,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 06:54:28,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.165s +2025-10-02 06:54:29,033 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:54:29,033 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:29,033 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44322 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44326 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44332 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:52196 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51449 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2125 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:30,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 06:54:30,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 06:54:30,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.167s +2025-10-02 06:54:30,900 - 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 06:54:30,900 - 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 06:54:30,901 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52197 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44340 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:54:31,239 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:31,240 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:31,291 - app.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 06:54:31,507 - 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 06:54:31,507 - 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 06:54:31,508 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:2126 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51450 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44350 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:44364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54: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 06:54: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 06:54:33,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.158s +2025-10-02 06:54:33,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 06:54:33,354 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:33,354 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4507 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44376 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44390 - "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 06:54:33,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 06:54:33,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 06:54:33,728 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +2025-10-02 06:54:33,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 06:54:33,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 06:54:33,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35954 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35970 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2133 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:35,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 06:54:35,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 06:54:35,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 06:54:35,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:54:35,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 06:54:35,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2134 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35984 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36000 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36004 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:4512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54: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 06:54: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 06:54:38,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.160s +2025-10-02 06:54:38,210 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:54:38,210 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:38,210 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36010 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53791 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:52202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:54:39,027 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:54:39,028 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:54:39,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.313s +2025-10-02 06:54:39,341 - 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.156s/image) +2025-10-02 06:54:39,341 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.313s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 06:54:39,341 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.77.167.192:53792 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:52203 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36016 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36026 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:40,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 06:54:40,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 06:54:40,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.153s +2025-10-02 06:54:40,648 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:54:40,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:40,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36038 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36052 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:42,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 06:54:42,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 06:54:42,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.160s +2025-10-02 06:54:42,399 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:54:42,399 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:42,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36056 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36072 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:43,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 06:54:43,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 06:54:43,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.162s +2025-10-02 06:54:43,228 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:54:43,229 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:43,229 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4518 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52164 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:54:44,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 06:54:44,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 06:54:44,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.167s +2025-10-02 06:54:44,451 - 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 06:54:44,452 - 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 06:54:44,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57811 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52174 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52184 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:45,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 06:54: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 06:54:45,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.163s +2025-10-02 06:54:45,852 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:54:45,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:45,853 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52198 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52206 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:4523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52212 - "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 06:54:47,814 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:54:47,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:54:47,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.166s +2025-10-02 06:54:47,981 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:54:47,982 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:47,982 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52220 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52230 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51462 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2153 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:49,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 06:54:49,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 06:54:49,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.172s +2025-10-02 06:54:49,743 - 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 06:54:49,743 - 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 06:54:49,743 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51463 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:49,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 06:54:49,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 06:54:49,966 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +2025-10-02 06:54:50,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:54:50,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 06:54:50,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2154 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52236 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52240 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52256 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52258 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4532 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:52,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 06:54:52,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 06:54:52,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.183s +2025-10-02 06:54:52,763 - 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 06:54:52,763 - 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 06:54:52,764 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4533 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52266 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57434 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2158 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:54,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 06:54:54,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 06:54:54,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.162s +2025-10-02 06:54:54,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:54:54,655 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:54,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2159 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57438 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57444 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53796 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:55,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 06:54: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 06:54:55,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.170s +2025-10-02 06:54:55,874 - 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 06:54:55,875 - 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 06:54:55,875 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53797 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:52216 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57458 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:56,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 06:54:56,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 06:54:56,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.161s +2025-10-02 06:54:56,798 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:54:56,798 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:56,798 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52217 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57462 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:57,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 06:54:57,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 06:54:57,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.160s +2025-10-02 06:54:57,687 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:54:57,688 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:54:57,688 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57464 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57480 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:50208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:54:58,825 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:54:58,859 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.939 +2025-10-02 06:54:58,947 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.939 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:54:58,947 - 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 06:54:58,947 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 211.197.218.214:50209 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57488 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:54:59,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 06:54:59,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 06:54:59,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.173s +2025-10-02 06:54:59,906 - 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 06:54:59,906 - 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 06:54:59,906 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57500 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57512 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57516 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57532 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57546 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 175.119.234.181:4544 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:02,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 06:55:02,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 06:55: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.173s +2025-10-02 06:55:02,880 - 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 06:55:02,880 - 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 06:55:02,880 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:4545 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57560 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42480 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42482 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42484 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:50276 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42490 - "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 06:55:06,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 06:55:06,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 06:55:06,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.152s +2025-10-02 06:55:06,551 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:55:06,551 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:06,551 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:50277 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42512 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:4549 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53801 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:55:07,815 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:55:07,815 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:55:07,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.301s +2025-10-02 06:55:08,116 - 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 06:55:08,117 - 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 06:55:08,117 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:4550 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53802 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42524 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:55:08,666 - 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 06:55:08,692 - 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=58.389 +2025-10-02 06:55:08,785 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=58.389 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:55:08,785 - 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 06:55:08,787 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.095s +INFO: 175.119.234.181:10663 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:57832 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42536 - "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 06:55:09,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 06:55:09,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 06:55: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.166s +2025-10-02 06:55:09,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:55:09,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:09,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57833 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42544 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42558 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:65506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:52221 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42580 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57840 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:12,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 06:55: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 06:55:12,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.161s +2025-10-02 06:55:12,493 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:55:12,493 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:12,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52222 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:55:12,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 06:55:12,650 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:55:12,711 - app.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 06:55:12,928 - 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 06:55:12,928 - 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 06:55:12,929 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:65507 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57841 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42592 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42602 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:50283 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:13,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 06:55:13,986 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:14,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.151s +2025-10-02 06:55:14,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:55:14,138 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:14,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:50284 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52676 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52690 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52694 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52696 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52710 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52718 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52728 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52738 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2180 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53806 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:20,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 06:55:20,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 06:55:20,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.167s +2025-10-02 06:55:20,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 06:55:20,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 06:55:20,224 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2181 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:20,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 06:55:20,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 06:55:20,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.196s +2025-10-02 06:55:20,592 - 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 06:55:20,592 - 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 06:55:20,592 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53807 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52748 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57850 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:21,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 06:55:21,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 06:55:21,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.159s +2025-10-02 06:55:21,669 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:55:21,669 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:21,669 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57851 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52758 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52776 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55720 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55726 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2185 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:25,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 06:55:25,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 06:55:25,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.158s +2025-10-02 06:55:26,068 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:55:26,068 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:26,068 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2186 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55734 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55736 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64137 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55752 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:65517 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:27,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 06:55:27,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 06:55:27,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.146s +2025-10-02 06:55:27,786 - 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 06:55:27,786 - 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 06:55:27,786 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64138 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:52227 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:28,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 06:55:28,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 06:55:28,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.161s +2025-10-02 06:55:28,198 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:55:28,198 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:28,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:65519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55764 - "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 06:55:28,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 06:55:28,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 06:55:28,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.141s +2025-10-02 06:55:28,562 - 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 06:55:28,562 - 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 06:55:28,562 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:52228 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55774 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55786 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55798 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2190 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:32,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 06:55:32,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 06:55:32,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.163s +2025-10-02 06:55:32,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:55:32,241 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:32,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2191 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55824 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55840 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:55852 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55862 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59580 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:34,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 06:55:34,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 06:55:34,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.138s +2025-10-02 06:55:34,769 - 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 06:55:34,769 - 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 06:55:34,770 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64145 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59594 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59598 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59614 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59622 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:50738 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:37,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 06:55:37,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 06:55:37,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 06:55:37,847 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:55:37,848 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:37,848 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:50739 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59624 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59632 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59642 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59648 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59660 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59668 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51487 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:41,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 06:55:41,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 06:55:41,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.135s +2025-10-02 06:55:42,060 - 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 06:55:42,060 - 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 06:55:42,061 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212: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 06:55:42,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 06:55:42,212 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55:42,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.152s +2025-10-02 06:55:42,365 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:55:42,365 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:42,365 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51488 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59686 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33562 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33568 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:46,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 06:55:46,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 06:55:46,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.155s +2025-10-02 06:55:47,002 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:55:47,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 06:55:47,003 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51493 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33584 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33600 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:50818 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33616 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55: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 06:55:48,956 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:55: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.157s +2025-10-02 06:55:49,113 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:55:49,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:49,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:50819 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:59625 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:49,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 06:55:49,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 06:55:49,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.144s +2025-10-02 06:55:49,660 - 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 06:55:49,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 06:55:49,661 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33618 - "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 06:55:49,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 06:55: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 06:55: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.157s +2025-10-02 06:55:50,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:55:50,053 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:50,053 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:59626 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33622 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33628 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51498 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:49174 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55: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 06:55: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 06:55: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.167s +2025-10-02 06:55:52,112 - 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 06:55:52,113 - 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 06:55:52,113 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51499 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33652 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:50844 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:53,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 06:55:53,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 06:55:53,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 06:55:53,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 06:55:53,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:53,723 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49175 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56464 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10695 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56466 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:55,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 06:55:55,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 06:55:55,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.168s +2025-10-02 06:55:55,240 - 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 06:55:55,240 - 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 06:55:55,241 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:50847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:55,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 06:55:55,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 06:55:55,418 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.143s +2025-10-02 06:55:55,529 - 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 06:55:55,529 - 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 06:55:55,530 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10696 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56474 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64163 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:55:56,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 06:55:56,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 06:55:56,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.139s +2025-10-02 06:55:56,636 - 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 06:55:56,636 - 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 06:55:56,636 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64164 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51503 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56484 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56500 - "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 06:55:57,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 06:55:57,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 06:55:57,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.149s +2025-10-02 06:55:57,761 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:55:57,761 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:57,762 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51504 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56504 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10700 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56508 - "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 06:55:59,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 06:55:59,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 06:55:59,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.155s +2025-10-02 06:55:59,192 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:55:59,192 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:55:59,193 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10701 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:50974 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56522 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56528 - "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 06:56:00,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 06:56:00,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 06:56:00,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.158s +2025-10-02 06:56:00,473 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:56:00,474 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:00,474 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:50977 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56530 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:14374 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:01,602 - 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 06:56:01,616 - 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=75.434 +2025-10-02 06:56:01,690 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.434 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.074s +2025-10-02 06:56:01,690 - 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 06:56:01,691 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 175.119.234.181:14375 - "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 06:56:01,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 06:56:01,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 06:56: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.131s +2025-10-02 06:56:01,835 - 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 06:56:01,835 - 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 06:56:01,835 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56540 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56556 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56560 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51508 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:03,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 06:56:03,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 06:56:03,481 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +2025-10-02 06:56:03,600 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:56:03,600 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:03,600 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51509 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45110 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45124 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:45132 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10732 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45158 - "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 06:56:05,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 06:56:05,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 06:56:05,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.149s +2025-10-02 06:56:06,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 06:56:06,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 06:56:06,119 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10733 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51513 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45160 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:07,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 06:56:07,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 06:56:07,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.136s +2025-10-02 06:56:07,297 - 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 06:56:07,297 - 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 06:56:07,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:07,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 06:56:07,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 06:56:07,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.149s +2025-10-02 06:56:07,674 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:56:07,674 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:07,674 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51514 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45170 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45180 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45182 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:59630 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45198 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:10,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 06:56:10,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 06:56:10,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 06:56:10,360 - 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 06:56:10,361 - 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 06:56:10,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:59631 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45214 - "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 06:56:11,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 06:56:11,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 06:56:11,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.152s +2025-10-02 06:56:11,656 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:56:11,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:11,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45222 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45228 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:13,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 06:56:13,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 06:56:13,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.132s +2025-10-02 06:56:13,143 - 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 06:56:13,144 - 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 06:56:13,144 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45244 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44598 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10743 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44602 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44610 - "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 06:56:15,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 06:56:15,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 06:56:15,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.159s +2025-10-02 06:56:15,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:56:15,349 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:15,349 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10744 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44620 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44630 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:51442 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:17,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 06:56:17,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 06:56:17,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.161s +2025-10-02 06:56:18,109 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:56:18,110 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:18,110 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44636 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44646 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44662 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10749 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44664 - "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 06:56:20,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 06:56:20,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 06:56:20,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.153s +2025-10-02 06:56:20,442 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:56:20,443 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:20,443 - 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: 175.119.234.181:59639 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44670 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49202 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52798 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:56:22,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 06:56:22,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 06:56:22,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.278s +2025-10-02 06:56:22,403 - 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 06:56:22,403 - 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 06:56:22,403 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:59640 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:51553 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:22,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 06:56:22,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 06:56:22,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 06:56:22,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 06:56:22,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 06:56:22,846 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44678 - "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 06:56:23,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 06:56:23,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 06:56:23,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.140s +2025-10-02 06:56:23,141 - 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 06:56:23,142 - 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 06:56:23,142 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51558 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:23,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 06:56:23,184 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.510 +2025-10-02 06:56:23,257 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=119.510 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.073s +2025-10-02 06:56:23,258 - 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 06:56:23,259 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.075s +INFO: 39.112.59.88:52799 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:38274 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38284 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10754 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:24,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 06:56:24,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 06:56:24,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.158s +2025-10-02 06:56:24,789 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:56:24,789 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:24,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10755 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38290 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38302 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38316 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:51711 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:27,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 06:56:27,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 06:56:28,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.174s +2025-10-02 06:56:28,146 - 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 06:56:28,146 - 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 06:56:28,146 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51712 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38322 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:57888 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:28,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 06:56:28,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 06:56:28,585 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 06:56:28,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:56:28,708 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:28,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:28,731 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:28,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=60.258 +2025-10-02 06:56:28,830 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=60.258 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 06:56:28,830 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:56:28,832 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:57889 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:38336 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38360 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38372 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38378 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57893 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38394 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38406 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:51859 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:33,975 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:34,014 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=124.942 +2025-10-02 06:56:34,106 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.942 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:56:34,106 - 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 06:56:34,108 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.094s +INFO: 61.255.207.212:57894 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:2245 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51536 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56916 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56922 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:34,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 06:56:34,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 06:56:34,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.178s +2025-10-02 06:56:34,629 - 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 06:56:34,629 - 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 06:56:34,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:51872 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:34,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 06:56:34,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 06:56:34,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.170s +2025-10-02 06:56:34,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 06:56:34,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 06:56:34,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51537 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56936 - "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 06:56:35,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 06:56:35,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 06:56:35,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +2025-10-02 06:56:35,263 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:56:35,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:35,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2246 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:35,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 06:56:35,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 06:56:35,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.158s +2025-10-02 06:56:35,879 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:56:35,879 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:35,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56946 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56948 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:49240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56956 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56: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 06:56: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 06:56:37,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.159s +2025-10-02 06:56:37,521 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:56:37,521 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:37,522 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:57900 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:59644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:38,003 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:38,033 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.066 +2025-10-02 06:56:38,123 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.066 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:56:38,123 - 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 06:56:38,125 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:57901 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:56962 - "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 06:56:38,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 06:56:38,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 06:56:38,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.179s +2025-10-02 06:56:38,808 - 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 06:56:38,809 - 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 06:56:38,809 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:59645 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56970 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56976 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56986 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:40,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 06:56:40,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 06:56:40,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 06:56:40,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 06:56:40,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 06:56:40,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51541 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56992 - "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 06:56:41,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 06:56:41,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 06:56:41,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.136s +2025-10-02 06:56:41,487 - 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 06:56:41,488 - 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 06:56:41,488 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51542 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57000 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57002 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:52145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57008 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:43,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 06:56:43,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 06:56:43,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.157s +2025-10-02 06:56:44,069 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:56:44,069 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:44,069 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49586 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49590 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49606 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49610 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:57905 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:46,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 06:56:46,827 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:56:46,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 06:56:46,984 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:56:46,984 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:46,984 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57906 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64193 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49612 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:47,565 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:47,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=44.925 +2025-10-02 06:56:47,670 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=44.925 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 06:56:47,671 - 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 06:56:47,673 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 61.255.207.212:64194 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:10799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49626 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49638 - "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 06:56:49,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 06:56:49,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 06:56:49,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:56:49,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:56:49,186 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:49,186 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:59650 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49250 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49646 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:52338 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:50,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 06:56:50,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 06:56:50,057 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:56:50,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 06:56:50,181 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:50,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:59651 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:50,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 06:56:50,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 06:56: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.156s +2025-10-02 06:56:50,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 06:56:50,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 06:56:50,491 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49251 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49658 - "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 06:56:50,706 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:50,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 06:56:50,743 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 06:56:50,867 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:56:50,867 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:50,867 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52339 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:51,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 06:56:51,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 06:56:51,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 06:56:51,294 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:56:51,295 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:51,295 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13981 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64198 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:51,448 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:51,465 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=145.311 +2025-10-02 06:56:51,546 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=145.311 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 06:56:51,546 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 06:56:51,548 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:64199 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:49672 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49676 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:49682 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55960 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55964 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55978 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55988 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10807 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:56,142 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:56:56,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 06:56:56,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.158s +2025-10-02 06:56:56,301 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:56:56,301 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:56,301 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10808 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56004 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64206 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:56:56,745 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:56:56,769 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.817 +2025-10-02 06:56:56,853 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=45.817 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 06:56:56,853 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.084s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.087s +2025-10-02 06:56:56,855 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.087s +INFO: 61.255.207.212:64207 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 211.197.218.214:52551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:56:57,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 06:56:57,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 06:56:57,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 06:56:57,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:56:57,398 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:56:57,398 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:52552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56014 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56026 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56042 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52817 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56052 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56058 - "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 06:57:00,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 06:57:00,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 06:57:00,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.177s +2025-10-02 06:57:00,931 - 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 06:57:00,931 - 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 06:57:00,931 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52818 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56070 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:49262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56082 - "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 06:57:03,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 06:57:03,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 06:57:03,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.165s +2025-10-02 06:57:03,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:57:03,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:03,761 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51742 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:59662 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51758 - "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 06:57:04,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 06:57:04,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 06:57:04,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 06:57:04,233 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:04,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:04,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:59663 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64211 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51766 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51768 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:05,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 06:57:05,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 06:57:05,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.148s +2025-10-02 06:57:05,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:57:05,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:05,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64212 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52822 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51770 - "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 06:57:05,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 06:57:05,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 06:57:05,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.171s +2025-10-02 06:57:06,095 - 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 06:57:06,096 - 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 06:57:06,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52823 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51776 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51786 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51796 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51802 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51814 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51822 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51838 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51840 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51854 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:52995 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39934 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:14,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 06:57:14,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 06:57:14,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.159s +2025-10-02 06:57:14,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:14,333 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:14,333 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53004 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39940 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:49277 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39948 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39956 - "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 06:57:16,159 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:16,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 06:57:16,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 06:57:16,319 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:16,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:16,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49278 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39958 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39962 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39966 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39982 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39998 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:59667 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:20,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 06:57:20,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 06:57:20,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 06:57:20,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 06:57:20,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 06:57:20,620 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:59668 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:40010 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40012 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:40018 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:40024 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47386 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47392 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47394 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:57933 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2282 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:27,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 06:57:27,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 06:57:27,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.163s +2025-10-02 06:57:27,807 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:57:27,807 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:27,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:57934 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47424 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:57:27,829 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(927, 1000, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:57:27,851 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(927, 1000, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=242.242 +2025-10-02 06:57:27,939 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=242.242 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 06:57:27,939 - 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 06:57:27,940 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 175.119.234.181:2283 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:47440 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47452 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:57:29,752 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:57:29,775 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.163 +2025-10-02 06:57:29,862 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=77.163 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.086s +2025-10-02 06:57:29,862 - 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 06:57:29,864 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:64908 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:6664 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47456 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:30,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 06:57:30,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 06:57:30,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.166s +2025-10-02 06:57:30,492 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:57:30,492 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:30,493 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:6665 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:53454 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49310 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:30,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 06:57:30,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 06:57:30,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.173s +2025-10-02 06:57:31,037 - 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 06:57:31,038 - 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 06:57:31,038 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47464 - "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 06:57:31,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 06:57:31,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 06:57:31,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.146s +2025-10-02 06:57:31,397 - 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 06:57:31,397 - 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 06:57:31,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49311 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47474 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47488 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47502 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55338 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2289 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:59672 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:52874 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:34,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 06:57:34,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 06:57:34,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.165s +2025-10-02 06:57:34,736 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:57:34,737 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:34,737 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2290 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:34,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 06:57:34,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 06:57:34,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 06:57:35,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 06:57:35,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 06:57:35,060 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:59673 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55352 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:55362 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64915 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:35,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 06:57:35,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 06:57:35,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.161s +2025-10-02 06:57:35,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:57:35,369 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:35,369 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52875 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:57:35,538 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:57:35,558 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.637 +2025-10-02 06:57:35,634 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=75.637 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 06:57:35,635 - 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 06:57:35,636 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.078s +INFO: 61.255.207.212:64916 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:55364 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55370 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10828 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:37,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 06:57:37,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 06:57:38,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.159s +2025-10-02 06:57:38,149 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:38,150 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:38,150 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10829 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64920 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:57:39,777 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 06:57:39,801 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.975 +2025-10-02 06:57:39,885 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=73.975 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:57:39,885 - 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 06:57:39,887 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 61.255.207.212:64921 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:55386 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55396 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2297 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:41,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 06:57:41,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 06:57:41,444 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 06:57:41,572 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:57:41,572 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:41,573 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:41,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 06:57:41,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 06:57:41,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.153s +2025-10-02 06:57:41,876 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:57:41,877 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:41,877 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2298 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55410 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53641 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55412 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55414 - "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 06:57:43,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 06:57:43,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 06:57:43,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.159s +2025-10-02 06:57:43,453 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:43,454 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:43,454 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53642 - "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: 39.112.59.88:52882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:43,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 06:57:43,978 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:57:44,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 06:57:44,129 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:57:44,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 06:57:44,129 - 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:58284 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:44,311 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:57:44,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 06:57: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.171s +2025-10-02 06:57:44,483 - 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 06:57:44,483 - 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 06:57:44,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58286 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:49327 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:56899 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58302 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:57:46,092 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:57:46,092 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:57:46,151 - app.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 06:57:46,386 - 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 06:57:46,386 - 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 06:57:46,386 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:49328 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:56900 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58306 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:46,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 06:57:46,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 06:57:46,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.154s +2025-10-02 06:57:47,036 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:57:47,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:47,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58314 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2306 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58328 - "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 06:57:48,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 06:57:48,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 06:57:48,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 06:57:48,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:57:48,665 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:48,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2307 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58336 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58346 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58350 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:50,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 06:57:50,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 06:57:50,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.159s +2025-10-02 06:57:50,690 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:57:50,690 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:50,690 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 06:57:51,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 06:57: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 06:57:51,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.153s +2025-10-02 06:57:51,167 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:57:51,167 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:51,167 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58360 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58376 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55676 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:56904 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55678 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:54,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 06:57:54,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 06:57:54,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 06:57:54,892 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:57:54,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:54,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56905 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:55,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 06:57:55,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 06:57:55,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.150s +2025-10-02 06:57:55,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 06:57:55,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 06:57:55,324 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2313 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55684 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:53962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:55,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 06:57:55,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 06:57:55,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.146s +2025-10-02 06:57:55,800 - 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 06:57:55,801 - 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 06:57:55,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2314 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:56,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 06:57:56,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 06:57:56,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.151s +2025-10-02 06:57:56,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 06:57:56,184 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:56,184 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:53965 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55700 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55710 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10841 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:57,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 06:57:57,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 06:57:57,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 06:57:57,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 06:57:57,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:57,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10842 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55716 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64252 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:57:59,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 06:57:59,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 06:57:59,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.161s +2025-10-02 06:57:59,613 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:57:59,613 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:57:59,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64253 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55728 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:54106 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58: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 06:58: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 06:58:00,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.156s +2025-10-02 06:58:00,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 06:58:00,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 06:58:00,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54107 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55736 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55744 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55746 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55748 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56156 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56162 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:58:06,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 06:58:06,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 06:58:06,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.162s +2025-10-02 06:58:06,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:58:06,206 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:06,206 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54257 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56166 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:06,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 06:58:06,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 06:58:06,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.154s +2025-10-02 06:58:07,042 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:58:07,042 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:07,043 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56180 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56190 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56206 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56218 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:56234 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:56242 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:56258 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64267 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:11,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 06:58:11,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 06:58:11,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 06:58:11,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:58:11,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:11,328 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64268 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49368 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:56274 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:11,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 06:58:11,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 06:58: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.163s +2025-10-02 06:58:11,840 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:58:11,841 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:11,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49369 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:56282 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2326 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33770 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33778 - "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 06:58:14,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 06:58:14,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 06:58:14,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.168s +2025-10-02 06:58:14,648 - 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 06:58:14,648 - 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 06:58:14,648 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2327 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:54518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:15,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 06:58:15,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 06:58:15,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.152s +2025-10-02 06:58:15,307 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:58:15,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:15,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33780 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:58:15,353 - 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 06:58:15,380 - 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=83.720 +2025-10-02 06:58:15,470 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=83.720 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 06:58:15,470 - 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 06:58:15,472 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 175.119.234.181:2231 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:64274 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:16,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 06:58:16,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 06:58:16,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.158s +2025-10-02 06:58:16,330 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:58:16,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 06:58:16,330 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64275 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33790 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33804 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:58:18,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 06:58:18,237 - 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=47.424 +2025-10-02 06:58:18,329 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=47.424 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.091s +2025-10-02 06:58:18,329 - 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 06:58:18,331 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 220.77.167.192:54557 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:33822 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33828 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2331 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33832 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33838 - "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 06:58:20,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 06:58:20,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 06:58:20,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.195s +2025-10-02 06:58:20,927 - 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 06:58:20,927 - 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 06:58:20,928 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2332 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:21,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 06:58:21,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 06:58:21,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.154s +2025-10-02 06:58:21,771 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 06:58:21,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 06:58:21,771 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:61648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58: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 06:58: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 06:58: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.159s +2025-10-02 06:58:22,241 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:58:22,242 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:22,242 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:61649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33856 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33860 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:54779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:23,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 06:58:23,981 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 06:58:24,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.161s +2025-10-02 06:58:24,142 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:24,143 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:24,143 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:54782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58026 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2337 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:25,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 06:58:25,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 06:58:25,720 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:58:25,841 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:58:25,842 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:25,842 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2338 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58042 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58048 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58050 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58052 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58056 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58072 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51600 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58080 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:30,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 06:58:30,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 06:58:30,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.171s +2025-10-02 06:58:30,390 - 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 06:58:30,390 - 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 06:58:30,390 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51601 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58090 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2244 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:31,631 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:58:31,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 06:58:31,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.148s +2025-10-02 06:58:31,779 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:58:31,780 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:31,780 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2245 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58100 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58116 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:55066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51394 - "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 06:58:34,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 06:58:34,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 06:58: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.161s +2025-10-02 06:58:34,504 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:34,504 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:34,504 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55069 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51606 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51396 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51406 - "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 06:58:35,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 06:58:35,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 06:58:35,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.172s +2025-10-02 06:58:35,539 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.172s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +2025-10-02 06:58:35,539 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.172s (avg: 0.172s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:35,539 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51607 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51414 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:55191 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51416 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51420 - "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 06:58:38,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 06:58:38,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 06:58:38,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.157s +2025-10-02 06:58:38,629 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 06:58:38,629 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:38,629 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55194 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51611 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58: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 06:58: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 06:58: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.138s +2025-10-02 06:58:39,366 - 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 06:58:39,366 - 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 06:58:39,366 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51612 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51422 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51424 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:51436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:49392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:41,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 06:58:41,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 06:58:41,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.161s +2025-10-02 06:58:41,506 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:41,506 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:41,506 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51448 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51462 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:42,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 06:58:42,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 06:58: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.158s +2025-10-02 06:58:42,357 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:58:42,357 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:42,358 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51617 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51478 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51492 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46162 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46166 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46174 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46186 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51621 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46188 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 06:58:47,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 06:58:47,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 06:58:47,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.161s +2025-10-02 06:58:47,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 06:58:47,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 06:58:47,658 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51622 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46190 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46198 - "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 06:58:47,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 06:58:47,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 06:58:47,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.140s +2025-10-02 06:58:48,106 - 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 06:58:48,107 - 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 06:58:48,107 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46212 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46214 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:61654 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:50,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 06:58:50,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 06:58:50,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.160s +2025-10-02 06:58:50,853 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:58:50,853 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:50,854 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:61655 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46218 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46220 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:55574 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46232 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:51,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 06:58:51,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 06:58:51,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 06:58:52,092 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 06:58:52,092 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:52,092 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55575 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:53,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 06:58:53,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 06:58:53,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.166s +2025-10-02 06:58:53,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:58:53,285 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:53,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38580 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:49724 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38584 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38600 - "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 06:58:55,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 06:58:55,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 06:58:55,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.161s +2025-10-02 06:58:55,591 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:58:55,591 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:55,591 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49725 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10851 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38614 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 06:58:55,932 - 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 06:58:55,957 - 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.358 +2025-10-02 06:58:56,041 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.358 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 06:58:56,041 - 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 06:58:56,043 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 175.119.234.181:10852 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:64969 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2270 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:56,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 06:58:56,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 06:58:56,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 06:58:56,576 - 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 06:58:56,576 - 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 06:58:56,577 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64970 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58:56,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 06:58:56,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 06:58:56,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.146s +2025-10-02 06:58:56,895 - 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 06:58:56,895 - 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 06:58:56,895 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2271 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38624 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236: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 06:58:57,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 06:58:57,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 06:58:57,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.171s +2025-10-02 06:58:57,665 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.171s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.171s (avg: 0.171s/image) +2025-10-02 06:58:57,665 - 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 06:58:57,665 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:55717 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38650 - "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 06:58:58,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 06:58:58,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 06:58:58,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.165s +2025-10-02 06:58:58,246 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 06:58:58,246 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:58,246 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51633 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:58: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 06:58:58,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 06:58: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.163s +2025-10-02 06:58:58,816 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:58:58,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:58:58,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55722 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38658 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38668 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38674 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38678 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2404 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:01,599 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 06:59:01,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 06:59:01,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 06:59:01,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 06:59:01,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 06:59:01,756 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2405 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38680 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10856 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:59:02,844 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:59:02,844 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:59:02,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.300s +2025-10-02 06:59:03,145 - 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 06:59:03,145 - 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 06:59:03,146 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:51639 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10857 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38688 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54532 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54544 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64977 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:55917 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:05,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 06:59:05,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 06:59: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.163s +2025-10-02 06:59:05,336 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:59:05,336 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:05,336 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64978 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54554 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51643 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54560 - "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 06:59:06,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 06:59:06,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 06:59:06,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.161s +2025-10-02 06:59:06,545 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 06:59:06,545 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:06,545 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:55918 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:06,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 06:59:06,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 06:59:06,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.147s +2025-10-02 06:59:06,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 06:59:06,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:06,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51644 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54570 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54576 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2413 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54582 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:08,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 06:59:08,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 06:59:08,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.152s +2025-10-02 06:59:08,870 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 06:59:08,870 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:08,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2414 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:5916 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49737 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:09,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 06:59:09,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 06:59:09,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.148s +2025-10-02 06:59:09,421 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:59:09,422 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:09,422 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5917 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54598 - "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 06:59: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 06:59: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 06:59:09,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.153s +2025-10-02 06:59:09,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 06:59:09,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 06:59:09,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59: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 06:59:09,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 06:59:10,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.151s +2025-10-02 06:59:10,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 06:59:10,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 06:59:10,147 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49738 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51649 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54604 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54620 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:54632 - "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 06:59:10,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 06:59:10,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 06:59:10,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.169s +2025-10-02 06:59:10,883 - 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 06:59:10,883 - 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 06:59:10,883 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51650 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54638 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2418 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59: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 06:59: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 06:59:12,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 06:59:12,407 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:59:12,407 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:12,407 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2419 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:5924 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:13,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 06:59:13,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 06:59: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.140s +2025-10-02 06:59:13,301 - 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 06:59:13,302 - 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 06:59:13,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5925 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51655 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54652 - "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 06:59:13,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 06:59:13,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 06:59:13,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 06:59:13,893 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 06:59:13,893 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:13,894 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51656 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51128 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51136 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:15,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 06:59:15,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 06:59:15,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.166s +2025-10-02 06:59:15,190 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 06:59:15,191 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:15,191 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2424 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51140 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:10868 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:15,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 06:59:15,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 06:59:15,875 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 06:59:16,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 06:59:16,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 06:59:16,004 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10869 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51142 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51154 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51162 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:55099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:5929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:18,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 06:59:18,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 06:59:18,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.171s +2025-10-02 06:59:18,461 - 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 06:59:18,462 - 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 06:59:18,462 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51178 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59: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 06:59: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 06:59:18,656 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 06:59:18,774 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 06:59: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 06:59:18,775 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2428 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51194 - "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 06:59:19,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 06:59:19,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 06:59:19,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.148s +2025-10-02 06:59:19,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:59:19,652 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:19,652 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2429 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64994 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51208 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51212 - "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 06:59:20,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 06:59:20,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 06:59:20,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.146s +2025-10-02 06:59:20,846 - 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 06:59:20,846 - 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 06:59:20,847 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64995 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51216 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2433 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:21,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 06:59:21,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 06:59:21,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.148s +2025-10-02 06:59:22,100 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:59:22,100 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:22,101 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2434 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51232 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:49748 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:22,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 06:59:22,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 06:59:22,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.160s +2025-10-02 06:59:23,000 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:59:23,001 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:23,001 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49749 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:5934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:23,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 06:59:23,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 06:59:23,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.150s +2025-10-02 06:59:23,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 06:59:23,511 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:23,511 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35352 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2438 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:24,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 06:59:24,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 06:59:24,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.149s +2025-10-02 06:59:24,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:24,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:24,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2439 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35354 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35358 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35372 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:5941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2444 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35386 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:59:28,205 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 06:59:28,205 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 06:59:28,255 - app.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 06:59:28,485 - 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 06:59:28,486 - 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 06:59:28,486 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:5942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2445 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65007 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35400 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35404 - "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 06:59:29,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 06:59:29,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 06:59:29,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.158s +2025-10-02 06:59:29,383 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 06:59:29,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:29,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65008 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51669 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:35414 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:30,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 06:59:30,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 06:59: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.173s +2025-10-02 06:59:30,451 - 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 06:59:30,452 - 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 06:59:30,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51670 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:35424 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35428 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:35436 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:35444 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:5946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:33,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 06:59:33,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 06:59:33,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.159s +2025-10-02 06:59:34,123 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 06:59:34,123 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:34,123 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51220 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51674 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:34,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 06:59:34,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 06:59:34,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.160s +2025-10-02 06:59:35,029 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:59:35,030 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:35,030 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51675 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:55113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51228 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51232 - "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 06:59:35,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 06:59:35,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 06:59:35,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.145s +2025-10-02 06:59:35,533 - 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 06:59:35,534 - 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 06:59:35,534 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:55114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.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 06:59:36,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 06:59:36,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 06:59:36,420 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +2025-10-02 06:59:36,538 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:36,538 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:36,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49779 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51238 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51254 - "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 06:59:37,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 06:59:37,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 06:59:37,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 06:59:37,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:59:37,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:37,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51266 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51282 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:5955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:39,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 06:59:39,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 06:59:39,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 06:59:39,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 06:59:39,357 - 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 06:59:39,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:39,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 06:59:39,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 06:59:39,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 06:59:39,650 - 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 06:59:39,650 - 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 06:59:39,651 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51286 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51298 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10891 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:41,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 06:59:41,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 06:59:41,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 06:59:41,578 - 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 06:59:41,578 - 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 06:59:41,579 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10892 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51312 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51324 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:51332 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:5960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:43,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 06:59:43,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 06:59:43,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.149s +2025-10-02 06:59:43,614 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:43,614 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:43,614 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5961 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10896 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58978 - "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 06:59:44,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 06:59:44,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 06:59:44,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.151s +2025-10-02 06:59:44,290 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 06:59:44,290 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:44,291 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10897 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58990 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58998 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52941 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:5965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54581 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 06:59:47,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 06:59:47,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 06:59:47,183 - app.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 06:59:47,410 - 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 06:59:47,410 - 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 06:59:47,410 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52942 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:5966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59010 - "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 06:59:47,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 06:59:47,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 06:59:47,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.163s +2025-10-02 06:59:47,748 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 06:59:47,748 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:47,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54582 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59012 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59016 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10902 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:49,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 06:59:49,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 06:59:49,049 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 06:59:49,165 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:59:49,165 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:49,166 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10903 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59018 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:49,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 06:59:49,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 06:59:49,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.160s +2025-10-02 06:59:49,855 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 06:59:49,855 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:49,856 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51691 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49815 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:50,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 06:59:50,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 06:59:50,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.149s +2025-10-02 06:59:50,347 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:50,348 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:50,348 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49816 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59028 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10907 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59040 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59052 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:5977 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:51,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 06:59:51,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 06:59:51,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.176s +2025-10-02 06:59:51,966 - 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 06:59:51,967 - 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 06:59:51,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10908 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:52,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 06:59:52,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 06:59:52,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.142s +2025-10-02 06:59:52,257 - 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 06:59:52,257 - 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 06:59:52,258 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:5978 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54587 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:52,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 06:59:52,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 06:59:52,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 06:59:52,764 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 06:59:52,764 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:52,765 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54588 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59068 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52946 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:54,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 06:59:54,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 06:59:54,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.150s +2025-10-02 06:59:54,404 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 06:59:54,405 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:54,405 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52947 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51638 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51646 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51658 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51699 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:10912 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:56,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 06:59:56,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 06:59:56,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.179s +2025-10-02 06:59:56,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 06:59:56,452 - 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 06:59:56,452 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51700 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:56,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 06:59:56,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 06:59:56,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.156s +2025-10-02 06:59:56,751 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 06:59:56,751 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:56,751 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10913 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51670 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13505 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 06:59:57,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 06:59:57,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 06:59:57,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.149s +2025-10-02 06:59:57,512 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 06:59:57,512 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 06:59:57,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13506 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51684 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51686 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51696 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51704 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52951 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51714 - "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 07:00:01,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 07:00:01,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 07:00:01,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.151s +2025-10-02 07:00:01,302 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:00:01,302 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:01,302 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52952 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51724 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51732 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:10917 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:02,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 07:00:02,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 07:00:02,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.151s +2025-10-02 07:00:02,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:00:02,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:02,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:02,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 07:00:02,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 07:00: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.147s +2025-10-02 07:00:02,532 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:00:02,532 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:02,532 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10918 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51744 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54672 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54686 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54694 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54595 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:05,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 07:00:05,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 07:00:06,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.164s +2025-10-02 07:00:06,136 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:00:06,136 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:06,136 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54596 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54708 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54710 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54726 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54740 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54744 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54760 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54766 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54772 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52956 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:00:11,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 07:00:12,001 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=114.625 +2025-10-02 07:00:12,086 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=114.625 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 07:00:12,087 - 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 07:00:12,087 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 39.112.59.88:52957 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:54782 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54794 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:51762 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51772 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51778 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51794 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51800 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51816 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:51834 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:52962 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2493 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51844 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:00:20,246 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:00:20,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 07:00:20,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.289s +2025-10-02 07:00:20,536 - 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 07:00:20,537 - 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 07:00:20,537 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:52963 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2494 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:10939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51858 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51862 - "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 07:00:21,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 07:00:21,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 07:00:21,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.168s +2025-10-02 07:00:21,464 - 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 07:00:21,464 - 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 07:00:21,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:10940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13533 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:22,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 07:00:22,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 07:00:22,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.148s +2025-10-02 07:00:22,338 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:00:22,339 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:22,339 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13534 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51868 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51872 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55102 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55114 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:25,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 07:00:25,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 07:00:25,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.156s +2025-10-02 07:00:25,327 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:00:25,327 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:25,327 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2500 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55126 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55128 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:52970 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55132 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55142 - "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 07:00:27,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 07:00:27,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 07:00:27,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.150s +2025-10-02 07:00:27,803 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:00:27,804 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:27,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55146 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55154 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:30,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 07:00:30,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 07:00:30,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.164s +2025-10-02 07:00:30,328 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:00:30,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:30,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2507 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:55170 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55172 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55182 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55190 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52310 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52326 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54623 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52338 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:34,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 07:00:34,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 07:00:34,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.176s +2025-10-02 07:00:34,822 - 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 07:00:34,822 - 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 07:00:34,822 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54624 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:52975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:35,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 07:00:35,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 07:00:35,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.148s +2025-10-02 07:00:35,603 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:00:35,603 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:35,604 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:52976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2511 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52342 - "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 07:00:35,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 07:00:35,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 07:00:36,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.156s +2025-10-02 07:00:36,152 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:00:36,152 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:36,152 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2512 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52364 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52372 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52386 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2518 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52402 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52412 - "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 07:00:39,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 07:00:39,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 07:00:39,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 07:00:40,073 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:00:40,074 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:40,074 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2519 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52422 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52430 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54631 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:42,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 07:00:42,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 07:00:42,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.157s +2025-10-02 07:00:42,836 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:00:42,837 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:42,837 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54632 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2523 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:43,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 07:00:43,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 07:00:43,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 07:00:44,104 - 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 07:00:44,104 - 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 07:00:44,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2524 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:49886 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:00:46,158 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:00:46,178 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.181 +2025-10-02 07:00:46,258 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=99.181 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 07:00:46,259 - 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 07:00:46,259 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 211.226.69.49:49887 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:52902 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52904 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2530 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:52910 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52912 - "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 07:00:48,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 07:00:48,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 07:00:48,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.154s +2025-10-02 07:00:48,948 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:00:48,949 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:00:48,949 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2531 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52914 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52926 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52936 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:52948 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:52952 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2543 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:00:52,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 07:00:52,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 07:00:52,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 07:00:52,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 07:00:52,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 07:00:52,884 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2544 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:52958 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:49898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53000 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:00:53,561 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:00:53,601 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.120 +2025-10-02 07:00:53,680 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=101.120 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.078s +2025-10-02 07:00:53,680 - 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 07:00:53,682 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 211.226.69.49:49899 - "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 07:00:53,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 07:00:53,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 07:00:53,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.138s +2025-10-02 07:00:53,841 - 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 07:00:53,841 - 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 07:00:53,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53001 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33200 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33202 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33216 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33222 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33238 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33254 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33270 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33282 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:33288 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:53010 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:33302 - "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 07:01:00,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 07:01:00,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 07:01:00,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.156s +2025-10-02 07:01:00,636 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:01:00,637 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:00,637 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53011 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33314 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:33318 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54648 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:02,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 07:01:02,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 07:01:02,694 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:01:02,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:01:02,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:02,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54649 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:33324 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38868 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38872 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38886 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38894 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:53021 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38896 - "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 07:01:07,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 07:01:07,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 07:01:07,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.165s +2025-10-02 07:01:07,699 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:01:07,700 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:07,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53022 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38902 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38912 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38914 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38918 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38928 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38938 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:38948 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38962 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:13,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 07:01:13,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 07:01:13,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.163s +2025-10-02 07:01:13,502 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:01:13,503 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:13,503 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54940 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54946 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54954 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54960 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:54972 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54984 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54988 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54994 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:53036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:51405 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55004 - "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 07:01:19,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 07:01:19,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 07:01:19,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.172s +2025-10-02 07:01:19,285 - 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 07:01:19,285 - 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 07:01:19,285 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:19,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 07:01:19,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 07:01:19,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 07:01:19,582 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:01:19,582 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:19,583 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51406 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54660 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55020 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:55034 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:55036 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2554 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:22,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 07:01:22,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 07:01:22,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.181s +2025-10-02 07:01:22,567 - 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 07:01:22,568 - 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 07:01:22,568 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54661 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:55038 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43920 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:23,872 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:23,915 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=124.141 +2025-10-02 07:01:24,006 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=124.141 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 07:01:24,006 - 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 07:01:24,008 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 175.119.234.181:2555 - "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 07:01:24,686 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:01:24,686 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:01:24,756 - app.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 07:01:25,004 - 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 07:01:25,004 - 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 07:01:25,005 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:53042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:49956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43928 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:51410 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:25,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 07:01:25,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 07:01:25,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.172s +2025-10-02 07:01:25,700 - 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 07:01:25,700 - 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 07:01:25,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:51411 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43946 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43958 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54665 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01: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 07:01:27,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 07:01:27,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.169s +2025-10-02 07:01:28,062 - 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 07:01:28,062 - 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 07:01:28,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54666 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43964 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:58966 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43976 - "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 07:01:29,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 07:01:29,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 07:01:29,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.152s +2025-10-02 07:01:29,199 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:01:29,200 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:29,200 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:58967 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43980 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43986 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43990 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:53058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44004 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 07:01:32,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 07:01:32,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 07:01:32,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.175s +2025-10-02 07:01:32,361 - 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 07:01:32,361 - 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 07:01:32,361 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:32,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 07:01:32,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 07:01:32,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.164s +2025-10-02 07:01:32,884 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:01:32,884 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:32,885 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54671 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44006 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44010 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58968 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58982 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58984 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58996 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59000 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:53065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:54675 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:59135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59010 - "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 07:01:38,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 07:01:38,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 07:01:38,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.174s +2025-10-02 07:01:38,642 - 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 07:01:38,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 07:01:38,643 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59020 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:01:39,178 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:01:39,179 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:01:39,250 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +2025-10-02 07:01:39,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.333s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +2025-10-02 07:01:39,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.333s (avg: 0.167s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 07:01:39,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:49966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54676 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59032 - "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 07:01:39,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:01:39,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 07:01:39,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.152s +2025-10-02 07:01:39,904 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:01:39,904 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:39,904 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59144 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59038 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59044 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59058 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59064 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:58024 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51684 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:43,799 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:43,826 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.179 +2025-10-02 07:01:43,909 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=153.179 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.082s +2025-10-02 07:01:43,909 - 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 07:01:43,909 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 61.255.207.212:58025 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236:51753 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51686 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:01:44,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 07:01:44,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 07:01:44,465 - app.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 07:01:44,706 - 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 07:01:44,706 - 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 07:01:44,706 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:51754 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53078 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51698 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51714 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:51718 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:59347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51722 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:46,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 07:01:46,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 07:01: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.154s +2025-10-02 07:01:46,996 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:01:46,996 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:46,997 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58029 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51736 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:47,276 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:47,299 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=196.062 +2025-10-02 07:01:47,379 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.062 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 07:01:47,379 - 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 07:01:47,380 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.081s +INFO: 61.255.207.212:58030 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:51746 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51762 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53085 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:49983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:49,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 07:01:49,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 07:01:49,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.149s +2025-10-02 07:01:49,514 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:01:49,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 07:01:49,515 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:49985 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:49,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 07:01:49,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 07:01:49,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.170s +2025-10-02 07:01:49,837 - 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 07:01:49,838 - 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 07:01:49,838 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51770 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51776 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54683 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:58036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51786 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:51792 - "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 07:01:51,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 07:01:51,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 07:01:51,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.166s +2025-10-02 07:01:52,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 07:01:52,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:52,090 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54684 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:51800 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:59356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:51802 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:53,425 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:53,463 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.462 +2025-10-02 07:01:53,554 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=131.462 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.089s +2025-10-02 07:01:53,554 - 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 07:01:53,555 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.092s +INFO: 61.255.207.212:58037 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 61.255.207.212:65038 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:54,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 07:01:54,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 07:01:54,154 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:01:54,279 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:01:54,280 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:54,280 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46148 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13301 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53094 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:54,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 07:01:54,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 07:01:54,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.165s +2025-10-02 07:01:54,672 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:01:54,673 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:54,673 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65039 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46164 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:01:55,066 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:01:55,087 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=196.779 +2025-10-02 07:01:55,171 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=196.779 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 07:01:55,171 - 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 07:01:55,173 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 220.77.167.192:53895 - "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 07:01:55,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 07:01:55,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 07:01:55,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.170s +2025-10-02 07:01:55,378 - 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 07:01:55,378 - 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 07:01:55,379 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53095 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01:55,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 07:01:55,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 07:01:55,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.146s +2025-10-02 07:01:55,685 - 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 07:01:55,686 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.146s (avg: 0.146s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:01:55,686 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13302 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46174 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46180 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51765 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:01: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 07:01:56,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 07:01:56,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 07:01:56,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:01:56,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 07:01:56,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51766 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46184 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46194 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46204 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46212 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:58041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2596 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53101 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:00,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 07:02:00,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 07:02:00,186 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:02:00,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 07:02:00,308 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:00,308 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:59381 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:46226 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:00,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 07:02:00,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 07:02:00,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.135s +2025-10-02 07:02:00,613 - 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 07:02:00,613 - 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 07:02:00,613 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2597 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11013 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:00,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 07:02:00,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 07:02:00,780 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.134s +2025-10-02 07:02:00,890 - 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 07:02:00,890 - 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 07:02:00,891 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53102 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46240 - "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 07:02:01,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 07:02:01,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 07:02:01,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.136s +2025-10-02 07:02:01,206 - 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 07:02:01,206 - 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 07:02:01,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:59382 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54691 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:01,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 07:02:01,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 07:02:01,408 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.142s +2025-10-02 07:02:01,518 - 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 07:02:01,518 - 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 07:02:01,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11014 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51770 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02: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 07:02: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 07:02:01,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.143s +2025-10-02 07:02:01,803 - 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 07:02:01,804 - 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 07:02:01,804 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54692 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:02,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 07:02:02,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 07:02:02,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.147s +2025-10-02 07:02:02,156 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:02:02,157 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:02,157 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51771 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:46250 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46260 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:46264 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36774 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2601 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:04,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 07:02:04,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 07:02:04,980 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.145s +2025-10-02 07:02:05,097 - 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 07:02:05,097 - 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 07:02:05,097 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2602 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36786 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36800 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53106 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36808 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54697 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:06,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 07:02:06,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 07:02:07,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.164s +2025-10-02 07:02:07,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:02:07,127 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:07,127 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53107 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51776 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:65046 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:07,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 07:02:07,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 07:02:07,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.146s +2025-10-02 07:02:07,806 - 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 07:02:07,806 - 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 07:02:07,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:02:07,984 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:02:07,984 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:02:08,043 - app.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 07:02:08,285 - 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 07:02:08,285 - 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 07:02:08,285 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:51777 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65047 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36832 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36844 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11018 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:08,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 07:02:08,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 07:02:09,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.159s +2025-10-02 07:02:09,141 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:02:09,141 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:09,141 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11019 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36850 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:50018 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:10,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 07:02:10,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 07:02:10,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.161s +2025-10-02 07:02:10,466 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:02:10,466 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:10,466 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50019 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36860 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:51423 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:11,016 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:02:11,034 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(799, 600, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=151.905 +2025-10-02 07:02:11,110 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=151.905 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.076s +2025-10-02 07:02:11,111 - 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 07:02:11,111 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.077s +INFO: 175.119.234.181:51424 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36874 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2611 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36876 - "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 07:02:11,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 07:02:11,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 07:02:11,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.149s +2025-10-02 07:02:12,011 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:02:12,011 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:12,011 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2612 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51781 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36878 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:12,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 07:02:12,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 07:02:12,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.164s +2025-10-02 07:02:12,800 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:02:12,801 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:12,801 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51782 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59246 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:59254 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59266 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53111 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11023 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64373 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:15,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 07:02:15,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 07:02:15,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.152s +2025-10-02 07:02:15,759 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:02:15,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 07:02:15,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11024 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59276 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59284 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:15,903 - 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 07:02:15,927 - 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=93.337 +2025-10-02 07:02:16,015 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=93.337 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 07:02:16,015 - 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 07:02:16,015 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.088s +INFO: 61.255.207.212:64374 - "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 07:02:16,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 07:02:16,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 07:02:16,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.166s +2025-10-02 07:02:16,206 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 07:02:16,207 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:16,207 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53112 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59294 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:65053 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:17,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 07:02:17,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 07:02:17,057 - app.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 07:02:17,167 - 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 07:02:17,167 - 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 07:02:17,168 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65054 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54705 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59302 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:17,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:17,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:02:17,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 07:02:17,960 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:02:17,960 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:17,961 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54706 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59306 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:49170 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59308 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64378 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:19,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 07:02:19,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 07:02:19,457 - app.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 07:02:19,570 - 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 07:02:19,570 - 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 07:02:19,570 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49171 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59324 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:19,702 - 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 07:02:19,721 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=128.518 +2025-10-02 07:02:19,809 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=128.518 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 07:02:19,809 - 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 07:02:19,811 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 61.255.207.212:64379 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 175.119.234.181:2619 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02: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 07:02: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 07:02:20,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.144s +2025-10-02 07:02:20,428 - 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 07:02:20,429 - 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 07:02:20,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2620 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:59334 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:59340 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13328 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:59344 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:02:22,276 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:02:22,276 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:02:22,330 - app.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 07:02:22,569 - 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 07:02:22,570 - 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 07:02:22,570 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13329 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65060 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51789 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:22,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 07:02: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 07:02:22,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 07:02:23,096 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:02:23,096 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:23,096 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65061 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212: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 07:02:23,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 07:02:23,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 07:02:23,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.192s +2025-10-02 07:02:23,789 - 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 07:02:23,789 - 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 07:02:23,789 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51790 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36636 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:24,078 - 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 07:02:24,104 - 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=56.350 +2025-10-02 07:02:24,189 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=56.350 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 07:02:24,190 - 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 07:02:24,190 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:64386 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36650 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36662 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13335 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36674 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:26,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 07:02:26,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 07:02:26,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.151s +2025-10-02 07:02:26,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 07:02:26,211 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:26,211 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13336 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:26,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 07:02:26,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 07:02:26,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.162s +2025-10-02 07:02:26,985 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:02:26,985 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:26,985 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58059 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36680 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:50031 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02: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 07:02: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 07:02:27,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.151s +2025-10-02 07:02:28,021 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:02:28,021 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:28,021 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50032 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36684 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36688 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2627 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:28,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 07:02:28,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 07:02: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.144s +2025-10-02 07:02:28,652 - 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 07:02:28,653 - 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 07:02:28,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2628 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11036 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36690 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:29,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 07:02:29,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 07:02:29,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.150s +2025-10-02 07:02:29,425 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:02:29,426 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:29,426 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11037 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65066 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36702 - "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 07:02:30,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 07:02:30,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 07:02:30,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.155s +2025-10-02 07:02:30,740 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:02:30,740 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:30,740 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51797 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36712 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36714 - "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 07:02:31,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 07:02:31,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 07:02:31,452 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +2025-10-02 07:02:31,578 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:02:31,578 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:31,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51798 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64390 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:31,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 07:02:31,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 07:02:32,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.153s +2025-10-02 07:02:32,126 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:02:32,126 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:32,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64391 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58065 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36722 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:32,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 07:02:32,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 07:02: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.151s +2025-10-02 07:02:32,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:02:32,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 07:02:32,624 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58066 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36734 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43308 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43324 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43336 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:11041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:36,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 07:02:36,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 07:02:36,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.153s +2025-10-02 07:02:36,318 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:02:36,319 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:36,319 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43342 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2635 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:36,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 07:02:36,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 07:02:36,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.143s +2025-10-02 07:02:36,807 - 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 07:02:36,807 - 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 07:02:36,807 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2636 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65073 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43348 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43354 - "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 07:02:37,750 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:02:37,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 07:02:37,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.173s +2025-10-02 07:02:37,924 - 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 07:02:37,924 - 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 07:02:37,924 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65074 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43360 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:58070 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:39,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 07:02:39,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 07:02:39,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.160s +2025-10-02 07:02:39,231 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:02:39,231 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:39,232 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58071 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43374 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43386 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43388 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:41,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 07:02:41,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 07:02:41,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.157s +2025-10-02 07:02:41,440 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:02:41,440 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:41,440 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43390 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43392 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:50061 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11046 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43398 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53244 - "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 07:02:43,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 07:02:43,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 07:02:43,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.170s +2025-10-02 07:02:43,864 - 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 07:02:43,864 - 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 07:02:43,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50062 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2644 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:44,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 07:02:44,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 07:02:44,065 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 07:02:44,186 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:02:44,187 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:44,187 - 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: 61.255.207.212:65080 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:44,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 07:02:44,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 07:02: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.141s +2025-10-02 07:02:44,479 - 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 07:02:44,479 - 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 07:02:44,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2647 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53246 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:02:44,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 07:02:44,741 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:02:44,789 - app.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 07:02:45,011 - 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 07:02:45,012 - 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 07:02:45,012 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:65081 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58078 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53256 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:54732 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53258 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53270 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:53274 - "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 07:02: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 07:02: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 07:02: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.166s +2025-10-02 07:02:46,934 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.166s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +2025-10-02 07:02:46,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.166s (avg: 0.166s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:46,935 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54733 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53290 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53306 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:58082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:49,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 07:02:49,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 07:02:49,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.161s +2025-10-02 07:02:49,296 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:02:49,296 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:49,297 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58083 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13345 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53314 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:49,572 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:02:49,595 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.607 +2025-10-02 07:02:49,675 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.607 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 07:02:49,675 - 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 07:02:49,677 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.082s +INFO: 175.119.234.181:13346 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:53326 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53328 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:60638 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:02:51,480 - 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 07:02:51,509 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(1000, 750, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=81.192 +2025-10-02 07:02:51,598 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.192 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.088s +2025-10-02 07:02:51,598 - 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 07:02:51,599 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.091s +INFO: 211.197.218.214:60639 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:53342 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11051 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:65086 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:02:52,320 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:02:52,321 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:02:52,371 - app.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 07:02:52,607 - 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 07:02:52,607 - 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 07:02:52,607 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:65087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11052 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:49197 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53356 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53370 - "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 07:02:53,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 07:02:53,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 07:02:53,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.145s +2025-10-02 07:02:53,152 - 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 07:02:53,153 - 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 07:02:53,153 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49198 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58089 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54374 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54741 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:54,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 07:02:54,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 07:02:54,051 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 07:02:54,174 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 07:02:54,175 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:54,175 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58090 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:54,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 07:02:54,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 07:02:54,545 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:02:54,666 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:02:54,666 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:54,666 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54742 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54382 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13356 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54396 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54402 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:49203 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:56,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 07:02:56,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 07:02:56,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.132s +2025-10-02 07:02:56,768 - 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 07:02:56,768 - 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 07:02:56,768 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49204 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54410 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:56,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 07:02:56,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 07:02:56,936 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:02:57,053 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:02:57,054 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:57,054 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13357 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54422 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54436 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54446 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11060 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:02:59,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 07:02:59,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 07:02:59,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.154s +2025-10-02 07:02:59,580 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:02:59,580 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:02:59,580 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11061 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54454 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:60910 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:00,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 07:03:00,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 07:03:00,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.149s +2025-10-02 07:03:00,732 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:03:00,732 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:00,733 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:60911 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54462 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:49208 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:01,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 07:03:01,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 07:03:01,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.129s +2025-10-02 07:03:01,622 - 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 07:03:01,622 - 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 07:03:01,622 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49209 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54464 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54474 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54488 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.127.236.236:51847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:03,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 07:03:03,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 07:03: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.147s +2025-10-02 07:03:03,474 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:03:03,475 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:03,475 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13362 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47102 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47116 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:58099 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2679 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:61082 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47130 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:49217 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:06,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 07:03:06,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 07:03:06,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.168s +2025-10-02 07:03:06,870 - 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 07:03:06,870 - 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 07:03:06,870 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13363 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47144 - "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 07:03:07,152 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:07,153 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:03:07,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.132s +2025-10-02 07:03:07,285 - 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 07:03:07,286 - 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 07:03:07,286 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49218 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51852 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:03:07,414 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:03:07,415 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:03:07,476 - app.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 07:03:07,712 - 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 07:03:07,712 - 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 07:03:07,712 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:2680 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58100 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53140 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47154 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47170 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:47172 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2684 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47186 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:03:10,103 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:03:10,104 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:03:10,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.313s +2025-10-02 07:03:10,418 - 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 07:03:10,419 - 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 07:03:10,419 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:2685 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51853 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47192 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:47196 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:49225 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:58106 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64415 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:11,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 07:03:11,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 07:03:11,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.133s +2025-10-02 07:03:11,514 - 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 07:03:11,514 - 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 07:03:11,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49226 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50085 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13367 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:47200 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54758 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:12,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 07:03:12,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 07:03:12,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.148s +2025-10-02 07:03:12,707 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:03:12,707 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:12,708 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64416 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:47206 - "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 07:03:13,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 07:03:13,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 07:03:13,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.152s +2025-10-02 07:03:13,329 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:03:13,329 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:13,329 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13368 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43358 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:49230 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43368 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53917 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:14,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 07:03:14,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 07:03:14,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.157s +2025-10-02 07:03:14,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:03:14,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:14,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50086 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:03:14,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 07:03:14,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 07:03:14,708 - app.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 07:03:14,940 - 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 07:03:14,941 - 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 07:03:14,941 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:58107 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53141 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2689 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:15,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 07:03:15,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 07:03:15,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.119s +2025-10-02 07:03:15,227 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.119s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.119s (avg: 0.119s/image) +2025-10-02 07:03:15,227 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.119s (avg: 0.119s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:15,227 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49231 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43376 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:15,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 07:03:15,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 07:03:15,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.151s +2025-10-02 07:03:15,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 07:03: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 07:03:15,518 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61087 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:15,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 07:03:15,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 07:03:15,818 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +2025-10-02 07:03:15,935 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:03:15,935 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:15,936 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53918 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43384 - "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 07:03:16,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 07:03:16,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 07:03:16,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.146s +2025-10-02 07:03:16,893 - 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 07:03:16,893 - 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 07:03:16,893 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2690 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64422 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43388 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:17,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 07:03:17,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 07:03:17,264 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +2025-10-02 07:03:17,382 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:03:17,383 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:17,383 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54759 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43396 - "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 07:03:17,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 07:03:17,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 07:03:17,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.155s +2025-10-02 07:03:18,071 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:03:18,071 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:18,072 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64423 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43402 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43408 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:43418 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:58113 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43432 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:20,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 07: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 07:03:20,273 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 07:03:20,400 - 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 07:03:20,401 - 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 07:03:20,401 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58114 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43440 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53145 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64427 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:21,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 07:03:21,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 07:03:21,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.146s +2025-10-02 07:03:21,249 - 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 07:03:21,249 - 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 07:03:21,249 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:49235 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:21,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 07:03:21,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 07:03:21,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.140s +2025-10-02 07:03:21,538 - 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 07:03:21,538 - 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 07:03:21,538 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53146 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43446 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03: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 07:03: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 07:03:21,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.116s +2025-10-02 07:03:21,777 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.116s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.116s (avg: 0.116s/image) +2025-10-02 07:03:21,777 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.116s (avg: 0.116s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:21,777 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49236 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43456 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:49240 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42868 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42870 - "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 07:03:24,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 07:03:24,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 07:03:24,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.139s +2025-10-02 07:03:24,412 - 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 07:03:24,412 - 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 07:03:24,413 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49241 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:61616 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:24,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 07:03:24,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 07:03:24,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 07:03:25,034 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:03:25,034 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:25,034 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61623 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42872 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 07:03:26,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 07:03:26,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 07:03:26,053 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +2025-10-02 07:03:26,181 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:03:26,182 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:26,182 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53926 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42882 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:42890 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88: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 07:03:27,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 07:03:27,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 07:03:27,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 07:03:27,874 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:03:27,874 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:27,874 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64437 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42904 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:28,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 07:03:28,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 07:03:28,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.164s +2025-10-02 07:03:28,489 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:03:28,489 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:28,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64438 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42910 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:50144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42918 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:42924 - "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 07:03: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 07:03:30,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 07:03:30,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.170s +2025-10-02 07:03:30,780 - 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 07:03:30,781 - 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 07:03:30,781 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50145 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 07:03:31,350 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO: 127.0.0.1:42930 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:03:31,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 07:03:31,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.155s +2025-10-02 07:03:31,507 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:03:31,507 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:31,507 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54770 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:61846 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:42946 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64445 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:32,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 07:03:32,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 07:03:32,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.159s +2025-10-02 07:03:32,760 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:03:32,760 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:32,760 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:61847 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:33,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 07:03:33,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 07:03:33,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.153s +2025-10-02 07:03:33,284 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:03:33,284 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:33,284 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64446 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:42948 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45886 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53155 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:34,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 07:03:34,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 07:03:34,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.151s +2025-10-02 07:03:34,548 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:03:34,548 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:34,548 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53156 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45894 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:49245 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:35,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 07:03:35,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 07:03:35,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.163s +2025-10-02 07:03:35,368 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:03:35,368 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:35,368 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49246 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45904 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53930 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13384 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:35,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 07:03: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 07:03:35,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.159s +2025-10-02 07:03:36,108 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:03:36,108 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:36,108 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53931 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64452 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:36,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 07:03:36,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 07:03:36,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 07:03:36,446 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:03:36,447 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:36,447 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13385 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45908 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45920 - "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 07:03:36,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 07:03:36,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 07:03:36,639 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.138s +2025-10-02 07:03:36,748 - 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 07:03:36,749 - 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 07:03:36,749 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64453 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:36,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 07:03:36,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 07:03:36,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.148s +2025-10-02 07:03:37,037 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:03:37,037 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:37,037 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45930 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45940 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:45948 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:45964 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13392 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64457 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:41,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 07:03:41,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 07:03:41,219 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.175s +2025-10-02 07:03:41,354 - 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 07:03:41,354 - 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 07:03:41,355 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13393 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:41,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 07:03:41,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 07:03:41,594 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +2025-10-02 07:03:41,716 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:03:41,716 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:41,716 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64458 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:54780 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:45974 - "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 07:03:42,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 07:03:42,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 07:03:42,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.162s +2025-10-02 07:03:42,652 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:03:42,653 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:42,653 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54781 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:45986 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:46002 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:62048 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:43,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 07:03:43,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 07:03:43,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.145s +2025-10-02 07:03:43,841 - 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 07:03:43,841 - 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 07:03:43,841 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62049 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57068 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:64464 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:65100 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:44,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 07:03:44,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 07:03:44,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.160s +2025-10-02 07:03:44,332 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:03:44,332 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:44,332 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64465 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:49253 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:03:44,363 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:03:44,382 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=171.558 +2025-10-02 07:03:44,462 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=171.558 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 07:03:44,463 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.080s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 07:03:44,465 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:65101 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57074 - "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 07:03:44,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 07:03:44,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 07:03:44,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.161s +2025-10-02 07:03:45,103 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:03:45,103 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:45,104 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49254 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:03:45,384 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:03:45,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=81.322 +2025-10-02 07:03:45,503 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=81.322 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.087s +2025-10-02 07:03:45,504 - 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 07:03:45,505 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.090s +INFO: 39.112.59.88:53161 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57090 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57100 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13397 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:46,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 07:03:46,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 07:03: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.168s +2025-10-02 07:03:46,932 - 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 07:03:46,932 - 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 07:03:46,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13398 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54785 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:47,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 07:03:47,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 07:03:47,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.210s +2025-10-02 07:03:47,815 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.210s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +2025-10-02 07:03:47,816 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.210s (avg: 0.210s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:47,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54786 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57126 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:62135 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57128 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57142 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:48,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 07:03:48,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 07:03:49,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.167s +2025-10-02 07:03:49,130 - 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 07:03:49,130 - 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 07:03:49,130 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62138 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57148 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:49,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 07:03:49,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 07:03:49,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.160s +2025-10-02 07:03:50,086 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:03:50,086 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:50,086 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:49262 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:57160 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:50,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 07:03:50,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 07:03:50,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.152s +2025-10-02 07:03:50,560 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:03:50,560 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:50,561 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:49263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:57166 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:57176 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:57178 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53165 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:65109 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:03:53,189 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:03:53,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=35.647 +2025-10-02 07:03:53,287 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=35.647 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.080s +2025-10-02 07:03:53,287 - 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 07:03:53,289 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.084s +INFO: 61.255.207.212:65110 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:57186 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:53,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 07:03:53,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 07:03:53,727 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.168s +2025-10-02 07:03:53,848 - 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 07:03:53,849 - 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 07:03:53,849 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53166 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50160 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44006 - "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 07:03:54,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 07:03:54,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 07:03: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.148s +2025-10-02 07:03:54,398 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:03:54,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 07:03:54,399 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50161 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:62308 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13409 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:54,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 07:03:54,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 07:03:54,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.189s +2025-10-02 07:03:55,062 - 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 07:03:55,062 - 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 07:03:55,062 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62309 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44016 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44028 - "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 07:03:55,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 07:03:55,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 07:03:55,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.165s +2025-10-02 07:03:55,931 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:03:55,931 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:55,932 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13410 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44036 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:65114 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44050 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:03:57,912 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:03:57,945 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.356 +2025-10-02 07:03:58,036 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=66.356 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.090s +2025-10-02 07:03:58,036 - 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 07:03:58,038 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.093s +INFO: 61.255.207.212:65115 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.77.167.192:54793 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:44054 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44064 - "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 07:03:58,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 07:03:58,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 07:03:58,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.154s +2025-10-02 07:03:58,722 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:03:58,722 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:03:58,722 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:54794 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44076 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:62455 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11072 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13414 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:03:59,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 07:03:59,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 07:04:00,012 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 07:04:00,125 - 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 07:04:00,126 - 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 07:04:00,126 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62456 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44084 - "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 07:04:00,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 07:04:00,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 07:04:00,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.149s +2025-10-02 07:04:00,463 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:04:00,464 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:00,464 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13415 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:04:00,486 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:04:00,505 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.412 +2025-10-02 07:04:00,588 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=79.412 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.083s +2025-10-02 07:04:00,589 - 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 07:04:00,591 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.086s +INFO: 175.119.234.181:11073 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 220.127.236.236: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 07:04:00,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 07:04:00,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 07:04:00,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.160s +2025-10-02 07:04:00,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 07:04:00,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 07:04:00,914 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:01,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 07:04:01,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 07:04:01,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.155s +2025-10-02 07:04:01,234 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:04:01,234 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:01,234 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51866 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:44094 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44106 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:44112 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:44124 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192: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 07:04:03,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 07:04:03,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 07:04: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.175s +2025-10-02 07:04:03,967 - 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 07:04:03,968 - 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 07:04:03,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53948 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39778 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39786 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:65121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:05,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 07:04:05,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 07:04:05,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.149s +2025-10-02 07:04:05,264 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:04:05,264 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:05,264 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39798 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39808 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:62656 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13424 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:07,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 07:04:07,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 07:04:07,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.174s +2025-10-02 07:04:07,181 - 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 07:04:07,181 - 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 07:04:07,181 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:62659 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51871 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39822 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39832 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:04:07,533 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:07,533 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:07,593 - app.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 07:04:07,831 - 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 07:04:07,831 - 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 07:04:07,832 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13425 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51872 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11077 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39838 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:09,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 07:04:09,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 07:04:09,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.157s +2025-10-02 07:04:09,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 07:04:09,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 07:04:09,243 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11078 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53184 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39840 - "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 07:04:10,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 07:04:10,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 07:04:10,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.158s +2025-10-02 07:04:10,258 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 07:04:10,259 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:10,259 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53185 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39844 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39850 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:39852 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39854 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13847 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:13,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 07:04:13,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 07:04:13,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.178s +2025-10-02 07:04:13,429 - 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 07:04:13,429 - 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 07:04:13,429 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13848 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51877 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39856 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53416 - "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 07:04:13,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 07:04:13,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 07:04:13,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.152s +2025-10-02 07:04:13,932 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:04:13,933 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:13,933 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51878 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53430 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:65127 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:15,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 07:04:15,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 07:04:15,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 07:04:15,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 07:04:15,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 07:04:15,523 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65128 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53432 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53955 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53448 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53454 - "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 07:04:16,804 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:16,805 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:16,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.163s +2025-10-02 07:04:16,968 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:04:16,968 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:16,968 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53956 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13853 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:17,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 07:04:17,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 07:04:17,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.161s +2025-10-02 07:04:17,633 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:04:17,633 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:17,634 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13854 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53466 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53476 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:53490 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53492 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:53502 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51882 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:63009 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:04:20,030 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:20,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 07:04:20,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.271s +2025-10-02 07:04:20,301 - 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 07:04:20,302 - 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 07:04:20,302 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:51883 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:63012 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53516 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:50218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:21,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 07:04:21,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 07:04:21,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.145s +2025-10-02 07:04:21,735 - 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 07:04:21,735 - 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 07:04:21,736 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.77.167.192:53961 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:22,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 07:04:22,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 07:04:22,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 07:04:22,497 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:04:22,497 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:22,497 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53962 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53520 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58514 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58526 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:58528 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:63152 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:04:25,525 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:25,525 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:25,581 - app.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 07:04:25,820 - 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 07:04:25,821 - 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 07:04:25,821 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:63153 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:13861 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:58536 - "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 07:04:26,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 07:04:26,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 07:04:26,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.170s +2025-10-02 07:04:26,514 - 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 07:04:26,514 - 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 07:04:26,514 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13862 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58552 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58558 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53967 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:27,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 07:04:27,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 07:04:27,498 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +2025-10-02 07:04:27,624 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.160s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +2025-10-02 07:04:27,624 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.160s (avg: 0.160s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:27,625 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53968 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58564 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58570 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214:63274 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53206 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:29,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 07:04:29,767 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:04:29,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.175s +2025-10-02 07:04:29,943 - 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 07:04:29,943 - 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 07:04:29,943 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53207 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58586 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58596 - "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 07:04:30,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 07:04:30,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 07:04:30,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.153s +2025-10-02 07:04:30,386 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:04:30,386 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:30,386 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:63283 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64492 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:13866 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:04:30,619 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:04:30,637 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +INFO:app.models.bria_rmbg_onnx:Bria ONNX mask stats: min=0, max=255, mean=94.008 +2025-10-02 07:04:30,723 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=94.008 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.085s +2025-10-02 07:04:30,723 - 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 07:04:30,726 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.089s +INFO: 61.255.207.212:64493 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:58612 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:31,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 07:04:31,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 07:04:31,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.174s +2025-10-02 07:04:31,207 - 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 07:04:31,207 - 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 07:04:31,208 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13867 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51893 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:31,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 07:04:31,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 07:04:32,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.151s +2025-10-02 07:04:32,137 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:04:32,137 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:32,138 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51894 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58618 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:50228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:32,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 07:04:32,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 07:04:32,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.150s +2025-10-02 07:04:32,925 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:04:32,925 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:32,926 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:58632 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:58646 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53213 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36244 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13872 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:34,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 07:04:34,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 07:04:34,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.138s +2025-10-02 07:04:34,578 - 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 07:04:34,578 - 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 07:04:34,578 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53214 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64499 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.77.167.192:53975 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:34,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 07:04:34,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 07:04:35,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.165s +2025-10-02 07:04:35,132 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:04:35,132 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:35,132 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13873 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:04:35,161 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:04:35,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=91.178 +2025-10-02 07:04:35,260 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=91.178 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 07:04:35,260 - app.models.bria_rmbg_onnx - INFO - 'bria-rmbg' processed in 0.079s +INFO:app.core.worker_manager:'rembg (briaaiRMBG-1.4)' processed in 0.083s +2025-10-02 07:04:35,263 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.083s +INFO: 61.255.207.212:64500 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:36252 - "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 07:04:35,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 07:04:35,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 07:04:35,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.170s +2025-10-02 07:04:35,685 - 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 07:04:35,685 - 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 07:04:35,685 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53976 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:63491 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36256 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36270 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36280 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:37,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 07:04:37,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 07:04:37,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 07:04:37,594 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:04:37,594 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:37,595 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:63498 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36282 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53218 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36296 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36298 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64506 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:40,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 07:04:40,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 07:04: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.167s +2025-10-02 07:04:40,479 - 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 07:04:40,479 - 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 07:04:40,480 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51899 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36308 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:04:40,783 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:04:40,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=102.914 +2025-10-02 07:04:40,893 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=102.914 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.084s +2025-10-02 07:04:40,894 - 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 07:04:40,894 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.085s +INFO: 61.255.207.212:64507 - "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 07:04:41,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 07:04: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 07:04:41,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.171s +2025-10-02 07:04:41,237 - 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 07:04:41,237 - 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 07:04:41,238 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53219 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36314 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:36324 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36334 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53983 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:43,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 07:04:43,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 07:04:43,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.169s +2025-10-02 07:04:43,198 - 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 07:04:43,198 - 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 07:04:43,198 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53984 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36122 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:58150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:50236 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04: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 07:04:44,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 07:04:44,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.157s +2025-10-02 07:04:44,269 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:04:44,270 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:44,270 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:44,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 07:04:44,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 07:04:44,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.152s +2025-10-02 07:04:44,573 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:04:44,574 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:44,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50237 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36126 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:13887 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:63775 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:04:45,164 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:45,165 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:45,230 - app.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 07:04:45,476 - 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 07:04:45,476 - 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 07:04:45,476 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:13888 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:63776 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2764 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36138 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36152 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:65139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51903 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:45,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 07:04:45,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 07:04:45,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.151s +2025-10-02 07:04:46,114 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:04:46,114 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:46,114 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2765 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:04:46,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 07:04:46,271 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:46,309 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.241s +2025-10-02 07:04:46,513 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.241s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.241s (avg: 0.121s/image) +2025-10-02 07:04:46,513 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.241s (avg: 0.121s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 07:04:46,513 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:65140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51904 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36166 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 39.112.59.88:53223 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64512 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36168 - "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 07:04:47,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 07:04:47,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 07:04:48,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 07:04:48,117 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:04:48,117 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:48,117 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64513 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:48,496 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:04:48,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 07:04:48,537 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +2025-10-02 07:04:48,655 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 07:04:48,656 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:48,656 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53224 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36178 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36188 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.77.167.192:53988 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36204 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36220 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:50,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 07:04:50,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 07:04:50,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.145s +2025-10-02 07:04:50,356 - 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 07:04:50,357 - 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 07:04:50,357 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53989 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2772 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11102 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:58156 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:36232 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:04:51,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 07:04:51,014 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:51,074 - app.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 07:04:51,317 - 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.152s/image) +2025-10-02 07:04:51,317 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.303s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 07:04:51,318 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:2773 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11103 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:51,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 07:04:51,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 07:04:51,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.146s +2025-10-02 07:04:51,670 - 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 07:04:51,670 - 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 07:04:51,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58157 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36236 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:36238 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51908 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:63968 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:52,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 07:04:52,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 07:04:52,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.147s +2025-10-02 07:04:52,564 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:04:52,565 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:52,565 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51909 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:52,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 07:04:52,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 07:04:52,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.163s +2025-10-02 07:04:52,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 07:04:52,916 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:52,916 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:63971 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:36254 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:13898 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04: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 07:04:53,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 07:04:53,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.165s +2025-10-02 07:04:53,649 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:04:53,649 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:53,649 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:13899 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38948 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53228 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:38950 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:38966 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2779 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:55,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 07:04:55,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 07:04:55,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.158s +2025-10-02 07:04:55,240 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.158s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +2025-10-02 07:04:55,240 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.158s (avg: 0.158s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:55,240 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53229 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50260 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:04:55,568 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:04:55,569 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:04:55,621 - app.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 07:04:55,846 - 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 07:04:55,847 - 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 07:04:55,847 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:2780 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50263 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38982 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53993 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:56,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 07:04:56,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 07:04:56,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.164s +2025-10-02 07:04:56,860 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:04:56,860 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:56,860 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53994 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:38984 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51913 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04: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 07:04: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 07:04:57,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.147s +2025-10-02 07:04:57,872 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:04:57,872 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:57,872 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51914 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39000 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39010 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:58163 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:58,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 07:04:58,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 07:04:58,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.149s +2025-10-02 07:04:58,486 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.149s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +2025-10-02 07:04:58,486 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.149s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:04:58,486 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58164 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65146 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:04:58,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 07:04:58,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 07:04:58,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.136s +2025-10-02 07:04:58,879 - 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 07:04:58,879 - 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 07:04:58,879 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65147 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39020 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:11110 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2784 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39030 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.197.218.214: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 07:05:00,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 07:05:00,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 07:05:00,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.174s +2025-10-02 07:05:00,364 - 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 07:05:00,364 - 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 07:05:00,364 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11111 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:00,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 07:05:00,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 07:05:00,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.146s +2025-10-02 07:05:00,695 - 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 07:05:00,696 - 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 07:05:00,696 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2785 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53233 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:00,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 07:05:00,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 07:05:00,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.140s +2025-10-02 07:05:01,002 - 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 07:05:01,002 - 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 07:05:01,002 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64175 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39036 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39040 - "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 07:05:01,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 07:05:01,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 07:05:01,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.171s +2025-10-02 07:05:01,553 - 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 07:05:01,553 - 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 07:05:01,553 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53234 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39054 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:53998 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:02,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 07:05:02,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 07:05:02,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.162s +2025-10-02 07:05:02,635 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:05:02,635 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:02,635 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.77.167.192:53999 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65151 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39062 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51918 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:03,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 07:05:03,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 07:05:03,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.163s +2025-10-02 07:05:03,349 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:05:03,350 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:03,350 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65152 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:03,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 07:05:03,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 07:05:03,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.147s +2025-10-02 07:05:03,675 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:05:03,675 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:03,676 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51919 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49050 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49052 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2789 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:04,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 07:05:04,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 07:05:04,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.148s +2025-10-02 07:05:04,645 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:05:04,645 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:04,645 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2790 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11121 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05: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 07:05:04,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 07:05:04,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.151s +2025-10-02 07:05:05,090 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:05:05,090 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:05,091 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11122 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58168 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49058 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:05,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 07:05:05,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 07:05:05,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 07:05:05,512 - 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 07:05:05,512 - 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 07:05:05,512 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58169 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:64319 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49074 - "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 07:05:06,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 07:05:06,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 07:05:06,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.161s +2025-10-02 07:05:06,654 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:05:06,654 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:06,654 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64320 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49090 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49104 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 39.112.59.88:53238 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:07,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 07:05:07,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 07:05:07,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.155s +2025-10-02 07:05:07,967 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.155s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +2025-10-02 07:05:07,967 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.155s (avg: 0.155s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:07,967 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53239 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49118 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.226.69.49:50284 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2794 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:05:08,776 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:08,776 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:08,831 - app.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 07:05:09,060 - 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 07:05:09,060 - 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 07:05:09,061 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.226.69.49:50285 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2795 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51923 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64522 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49126 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:65157 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:09,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 07:05:09,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 07:05:09,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.145s +2025-10-02 07:05:09,580 - 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 07:05:09,580 - 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 07:05:09,581 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64523 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:05:09,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 07:05:09,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 07:05:09,779 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.262s +2025-10-02 07:05:09,997 - 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 07:05:09,998 - 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 07:05:09,998 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 220.127.236.236:51924 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65158 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:64425 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49138 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49146 - "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 07:05:10,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 07:05:10,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 07:05:10,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.164s +2025-10-02 07:05:10,864 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:05:10,864 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:10,864 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:64428 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11126 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49154 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:11,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 07:05:11,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 07:05:11,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.180s +2025-10-02 07:05:11,573 - 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 07:05:11,574 - 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 07:05:11,574 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11127 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53247 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:49170 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:58175 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:05:12,487 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:12,487 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:12,544 - app.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 07:05:12,770 - 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 07:05:12,771 - 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 07:05:12,771 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 39.112.59.88:53248 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58176 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2799 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:13,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 07:05:13,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 07:05:13,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.152s +2025-10-02 07:05:13,345 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:05:13,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 07:05:13,346 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2800 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:49174 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:49184 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:64529 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:14,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 07:05:14,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 07:05:14,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.156s +2025-10-02 07:05:14,487 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.156s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +2025-10-02 07:05:14,487 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.156s (avg: 0.156s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:14,487 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64530 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39716 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:56030 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51929 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:15,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 07:05:15,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 07:05:15,367 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +2025-10-02 07:05:15,488 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:05:15,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 07:05:15,489 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56031 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65162 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39730 - "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 07:05:15,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 07:05:15,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 07:05:15,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 07:05:15,792 - 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 07:05:15,793 - 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 07:05:15,793 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51930 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:15,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 07:05:15,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 07:05:15,987 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +2025-10-02 07:05:16,104 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.153s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +2025-10-02 07:05:16,105 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.153s (avg: 0.153s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:16,105 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65163 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39736 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:39748 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2804 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:64537 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:17,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 07:05:17,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 07:05:17,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.172s +2025-10-02 07:05:17,704 - 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 07:05:17,704 - 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 07:05:17,705 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2805 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39760 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05: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 07:05:17,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 07:05:17,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.134s +2025-10-02 07:05:18,036 - 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 07:05:18,036 - 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 07:05:18,036 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64538 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53257 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:18,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 07:05:18,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 07:05:18,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.152s +2025-10-02 07:05:18,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 07:05:18,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 07:05:18,540 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 39.112.59.88:53258 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:58182 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39772 - "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 07:05:18,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 07:05:18,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 07:05:18,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.148s +2025-10-02 07:05:19,005 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:05:19,006 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:19,006 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58183 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50291 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11134 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:05:19,439 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:19,440 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:19,507 - app.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 07:05:19,750 - 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 07:05:19,750 - 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 07:05:19,751 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:11135 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50292 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39784 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 211.197.218.214:64690 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39800 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:39812 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:65169 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:05:20,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 07:05:20,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 07:05:20,361 - app.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 07:05:20,598 - 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 07:05:20,598 - 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 07:05:20,599 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 61.255.207.212:65170 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:64698 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:39818 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 175.119.234.181:2809 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 220.127.236.236:51934 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:21,553 - app.core.batch_manager - INFO - Creating a new batch with 1 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +2025-10-02 07:05:21,554 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 1). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +2025-10-02 07:05:21,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.148s +2025-10-02 07:05:21,702 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:05:21,702 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:21,702 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2810 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:21,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 07:05:21,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 07:05:21,991 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.140s +2025-10-02 07:05:22,102 - 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 07:05:22,103 - 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 07:05:22,103 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51935 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64546 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:39828 - "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 07:05:22,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 07:05:22,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 07:05:22,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.164s +2025-10-02 07:05:22,955 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:05:22,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 07:05:22,956 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64547 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11139 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 39.112.59.88:53273 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:05:23,692 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:23,693 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:23,754 - app.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 07:05:23,992 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 2). VRAM: 0.0 GB | Duration: 0.299s +INFO:app.core.worker_manager:'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +2025-10-02 07:05:23,992 - app.core.worker_manager - INFO - 'simple-lama' batch of 2 processed in 0.299s (avg: 0.149s/image) +INFO:app.core.batch_manager:Successfully processed batch of 2 jobs. +2025-10-02 07:05:23,992 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 175.119.234.181:11140 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 39.112.59.88:53274 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53408 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53416 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:58187 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53420 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:25,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 07:05:25,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 07:05:25,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.157s +2025-10-02 07:05:25,260 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.157s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +2025-10-02 07:05:25,260 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.157s (avg: 0.157s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:25,260 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58188 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64551 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:64857 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:56035 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2814 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:25,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 07:05:25,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 07:05: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.140s +2025-10-02 07:05:25,872 - 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 07:05:25,872 - 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 07:05:25,873 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64552 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 2 jobs. +2025-10-02 07:05:26,047 - app.core.batch_manager - INFO - Creating a new batch with 2 jobs. +INFO:app.core.worker_manager:🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +2025-10-02 07:05:26,048 - app.core.worker_manager - INFO - 🧠[simple_lama] Batch Inference Start (Size: 2). VRAM: 0.0 GB +INFO:app.models.simple_lama:실제 SimpleLama 모델로 2개 이미지 인페인팅 수행 +2025-10-02 07:05:26,102 - app.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 07:05:26,334 - 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 07:05:26,335 - 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 07:05:26,335 - app.core.batch_manager - INFO - Successfully processed batch of 2 jobs. +INFO: 211.197.218.214:64868 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:56036 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53422 - "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 07:05:26,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 07:05:26,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 07:05:26,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.145s +2025-10-02 07:05:26,669 - 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 07:05:26,670 - 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 07:05:26,670 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2815 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51939 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53436 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53448 - "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 07:05:27,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 07:05:27,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 07:05:27,700 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +2025-10-02 07:05:27,818 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.154s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +2025-10-02 07:05:27,818 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.154s (avg: 0.154s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:27,818 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51940 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:64556 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53450 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53464 - "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 07:05:30,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 07:05:30,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 07:05: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.165s +2025-10-02 07:05:30,214 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.165s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +2025-10-02 07:05:30,215 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.165s (avg: 0.165s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:30,215 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:64557 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2820 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53474 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:53490 - "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 07:05:30,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 07:05:30,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 07:05:30,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.151s +2025-10-02 07:05:30,820 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:05:30,820 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:30,820 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2821 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:11144 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:31,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 07:05:31,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 07:05: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.175s +2025-10-02 07:05:31,433 - 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 07:05:31,434 - 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 07:05:31,434 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11145 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.197.218.214:65058 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:53494 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 61.255.207.212:58195 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.226.69.49:50304 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 61.255.207.212:65179 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:31,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 07:05:31,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 07:05:31,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.150s +2025-10-02 07:05:32,028 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:05:32,028 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:32,028 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:58196 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 3 jobs. +2025-10-02 07:05:32,195 - 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 07:05:32,195 - 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 07:05:32,271 - 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 07:05:32,590 - 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 07:05:32,590 - 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 07:05:32,590 - app.core.batch_manager - INFO - Successfully processed batch of 3 jobs. +INFO: 211.197.218.214:65067 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 211.226.69.49:50305 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 61.255.207.212:65180 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:53510 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54754 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54760 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51944 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:34,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 07:05: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 07:05:34,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.162s +2025-10-02 07:05:34,482 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.162s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.162s (avg: 0.162s/image) +2025-10-02 07:05:34,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 07:05:34,483 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51945 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 175.119.234.181:2826 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54770 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:35,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 07:05:35,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 07:05:35,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.148s +2025-10-02 07:05:35,342 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.148s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +2025-10-02 07:05:35,342 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.148s (avg: 0.148s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:35,342 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2827 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54778 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54794 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54804 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:56041 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:11150 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:37,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 07:05:37,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 07:05:37,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.167s +2025-10-02 07:05:37,816 - 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 07:05:37,816 - 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 07:05:37,816 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:56042 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54812 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 220.77.167.192:54811 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:38,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 07: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 07:05:38,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.172s +2025-10-02 07:05:38,189 - 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 07:05:38,190 - 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 07:05:38,190 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11151 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.api.endpoints:플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +2025-10-02 07:05:38,383 - app.api.endpoints - INFO - 플러그인 호환 엔드포인트 '/api/v1/run_plugin_gen_image' 호출됨 (모델: rembg) +INFO:app.models.bria_rmbg_onnx:배경제거 시작(Bria ONNX): image.shape=(800, 800, 3), model_name=briaaiRMBG-1.4 +2025-10-02 07:05:38,400 - app.models.bria_rmbg_onnx - INFO - 배경제거 시작(Bria ONNX): image.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.469 +2025-10-02 07:05:38,479 - app.models.bria_rmbg_onnx - INFO - Bria ONNX mask stats: min=0, max=255, mean=129.469 +INFO:app.models.bria_rmbg_onnx:'bria-rmbg' processed in 0.079s +2025-10-02 07:05:38,480 - 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 07:05:38,480 - app.core.worker_manager - INFO - 'rembg (briaaiRMBG-1.4)' processed in 0.080s +INFO: 220.77.167.192:54812 - "POST /api/v1/run_plugin_gen_image HTTP/1.1" 200 OK +INFO: 127.0.0.1:54818 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2831 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:39,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 07:05:39,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 07:05:39,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.152s +2025-10-02 07:05:39,478 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:05:39,478 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:39,479 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2832 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 220.127.236.236:51949 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:54820 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54828 - "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 07:05:40,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 07:05:40,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 07:05:40,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.152s +2025-10-02 07:05:40,962 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.152s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +2025-10-02 07:05:40,963 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.152s (avg: 0.152s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:40,963 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51950 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:54844 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54854 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:54856 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:54862 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 61.255.207.212:65186 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:2838 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:43,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 07:05:43,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 07:05:43,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.182s +2025-10-02 07:05:44,092 - 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 07:05:44,093 - 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 07:05:44,093 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 61.255.207.212:65187 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50834 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05: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 07:05: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 07:05:44,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.151s +2025-10-02 07:05:44,567 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.151s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +2025-10-02 07:05:44,567 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.151s (avg: 0.151s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:44,567 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2839 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50846 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50862 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50866 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51954 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 211.197.218.214:65385 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50880 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:47,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 07:05:47,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 07:05:47,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.161s +2025-10-02 07:05:47,397 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:05:47,397 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:47,397 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51955 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:47,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 07:05:47,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 07:05:47,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.159s +2025-10-02 07:05:47,952 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.159s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +2025-10-02 07:05:47,953 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.159s (avg: 0.159s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:47,953 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.197.218.214:65386 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50892 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:2844 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 175.119.234.181:62894 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:48,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 07:05:48,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 07:05:48,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.147s +2025-10-02 07:05:48,812 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.147s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.147s (avg: 0.147s/image) +2025-10-02 07:05:48,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 07:05:48,813 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:2845 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:48,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 07:05:48,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 07:05:49,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 07:05:49,150 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.163s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.163s (avg: 0.163s/image) +2025-10-02 07:05:49,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 07:05:49,151 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:62895 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:50906 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50912 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50926 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50936 - "GET /api/v1/health HTTP/1.1" 200 OK +INFO: 127.0.0.1:50938 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:50952 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:50966 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51960 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:50976 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:53,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 07:05:53,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 07:05:53,501 - app.models.simple_lama - INFO - 실제 SimpleLama 모델로 1개 이미지 인페인팅 수행 +INFO:app.core.worker_manager:✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +2025-10-02 07:05:53,622 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.150s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +2025-10-02 07:05:53,623 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.150s (avg: 0.150s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:53,623 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51961 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43186 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 127.0.0.1:43188 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43200 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 211.226.69.49:50347 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43216 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43222 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 175.119.234.181:11171 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO: 127.0.0.1:43228 - "GET /api/v1/stats HTTP/1.1" 200 OK +INFO: 127.0.0.1:43238 - "GET /api/v1/realtime_status HTTP/1.1" 200 OK +INFO: 220.127.236.236:51965 - "GET /api/v1/model HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:58,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 07:05:58,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 07:05:58,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.182s +2025-10-02 07:05:58,700 - 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 07:05:58,700 - 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 07:05:58,700 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 175.119.234.181:11172 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05:58,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 07:05:58,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 07:05:58,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.164s +2025-10-02 07:05:59,031 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.164s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +2025-10-02 07:05:59,031 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.164s (avg: 0.164s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:59,032 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 220.127.236.236:51966 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO:app.core.batch_manager:Creating a new batch with 1 jobs. +2025-10-02 07:05: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 07:05:59,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 07:05:59,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.161s +2025-10-02 07:05:59,464 - app.core.worker_manager - INFO - ✅[simple_lama] Batch Inference End (Size: 1). VRAM: 0.0 GB | Duration: 0.161s +INFO:app.core.worker_manager:'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +2025-10-02 07:05:59,465 - app.core.worker_manager - INFO - 'simple-lama' batch of 1 processed in 0.161s (avg: 0.161s/image) +INFO:app.core.batch_manager:Successfully processed batch of 1 jobs. +2025-10-02 07:05:59,465 - app.core.batch_manager - INFO - Successfully processed batch of 1 jobs. +INFO: 211.226.69.49:50348 - "POST /api/v1/inpaint HTTP/1.1" 200 OK +INFO: 127.0.0.1:43248 - "GET /api/v1/stats HTTP/1.1" 200 OK diff --git a/logs/monitoring.log b/logs/monitoring.log index 9b82617..19854b6 100644 --- a/logs/monitoring.log +++ b/logs/monitoring.log @@ -1,49 +1,38 @@ WARNING:root:jtop library not found. Jetson monitoring will be limited. Please run 'sudo pip install jetson-stats' -INFO: Started server process [326863] +INFO: Started server process [342486] INFO: Waiting for application startup. INFO: Application startup complete. INFO: Uvicorn running on http://0.0.0.0:8888 (Press CTRL+C to quit) -INFO: 122.35.47.45:59571 - "WebSocket /ws" [accepted] -ERROR:app.monitoring.dashboard:모델 성능 통계 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) +INFO: 127.0.0.1:47424 - "GET /api/simple HTTP/1.1" 200 OK +INFO: 122.35.47.45:64056 - "WebSocket /ws" [accepted] INFO: connection open -WARNING:app.monitoring.dashboard:실시간 상태 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) -INFO: 122.35.47.45:59569 - "GET /api/system-alerts HTTP/1.1" 200 OK -INFO: 122.35.47.45:59567 - "GET / HTTP/1.1" 200 OK -INFO: 122.35.47.45:59574 - "GET / HTTP/1.1" 200 OK -INFO: 122.35.47.45:59575 - "GET /api/model-usage-stats HTTP/1.1" 200 OK -INFO: 127.0.0.1:56324 - "GET /api/simple HTTP/1.1" 200 OK -INFO: 122.35.47.45:59578 - "GET / HTTP/1.1" 200 OK -INFO: 122.35.47.45:59569 - "GET /api/system-alerts HTTP/1.1" 200 OK -INFO: 122.35.47.45:59577 - "WebSocket /ws" [accepted] -INFO: connection open -INFO: 122.35.47.45:59576 - "GET /api/session_events?limit=100 HTTP/1.1" 200 OK -INFO: 122.35.47.45:59568 - "GET /api/errors HTTP/1.1" 200 OK -INFO: 122.35.47.45:59578 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK -INFO: 122.35.47.45:59575 - "GET /api/performance-stats HTTP/1.1" 200 OK -ERROR:app.monitoring.dashboard:데이터 전송 오류: -INFO: 122.35.47.45:59584 - "GET /api/model-usage-stats HTTP/1.1" 200 OK -INFO: connection closed -INFO: connection closed -INFO: 122.35.47.45:59592 - "GET /api/system-alerts HTTP/1.1" 200 OK -INFO: 122.35.47.45:59575 - "GET / HTTP/1.1" 200 OK -ERROR:app.monitoring.dashboard:데이터 전송 오류: -INFO: 122.35.47.45:59588 - "WebSocket /ws" [accepted] -INFO: connection open -INFO: 122.35.47.45:59592 - "GET /api/performance-stats HTTP/1.1" 200 OK -INFO: 122.35.47.45:59575 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK -INFO: 122.35.47.45:59604 - "GET /api/model-usage-stats HTTP/1.1" 200 OK -INFO: 122.35.47.45:59603 - "GET /api/system-alerts HTTP/1.1" 200 OK -ERROR:app.monitoring.dashboard:데이터 전송 오류: -INFO: connection closed -INFO: 122.35.47.45:59578 - "GET /api/session_events?limit=100 HTTP/1.1" 200 OK -INFO: 122.35.47.45:59602 - "WebSocket /ws" [accepted] -INFO: connection open -INFO: 122.35.47.45:59584 - "GET /api/errors HTTP/1.1" 200 OK -ERROR:app.monitoring.dashboard:모델 성능 통계 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) -WARNING:app.monitoring.dashboard:실시간 상태 조회 중 예외 발생: HTTPConnectionPool(host='0.0.0.0', port=8008): Read timed out. (read timeout=2) -INFO: 122.35.47.45:59624 - "GET /api/system-alerts HTTP/1.1" 200 OK -INFO: 122.35.47.45:59625 - "GET /api/errors HTTP/1.1" 200 OK -INFO: 122.35.47.45:59630 - "GET /api/model-usage-stats HTTP/1.1" 200 OK -INFO: 122.35.47.45:59629 - "GET /api/session_events?limit=100 HTTP/1.1" 200 OK -INFO: 122.35.47.45:59629 - "GET /api/system-alerts HTTP/1.1" 200 OK -INFO: 122.35.47.45:59630 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 122.35.47.45:64067 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64068 - "GET /api/performance-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64103 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64104 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 122.35.47.45:64105 - "GET /api/session_events?limit=100 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64102 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 122.35.47.45:64109 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64168 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64167 - "GET /api/performance-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64169 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 122.35.47.45:64166 - "GET /api/session_events?limit=100 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64170 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 122.35.47.45:64241 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64244 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 122.35.47.45:64246 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64242 - "GET /api/performance-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64243 - "GET /api/session_events?limit=100 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64245 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 122.35.47.45:64297 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64296 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 122.35.47.45:64299 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64294 - "GET /api/performance-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64295 - "GET /api/session_events?limit=100 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64298 - "GET /api/errors HTTP/1.1" 200 OK +INFO: 122.35.47.45:64346 - "GET /api/model-usage-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64347 - "GET /api/system-alerts HTTP/1.1" 200 OK +INFO: 122.35.47.45:64349 - "GET /api/logs?lines=50 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64343 - "GET /api/performance-stats HTTP/1.1" 200 OK +INFO: 122.35.47.45:64345 - "GET /api/session_events?limit=100 HTTP/1.1" 200 OK +INFO: 122.35.47.45:64344 - "GET /api/errors HTTP/1.1" 200 OK diff --git a/logs/monitoring.pid b/logs/monitoring.pid index 38ff948..1cafe77 100644 --- a/logs/monitoring.pid +++ b/logs/monitoring.pid @@ -1 +1 @@ -326863 +342486 diff --git a/status.json b/status.json index 7ecc2f4..a800b38 100644 --- a/status.json +++ b/status.json @@ -78,43 +78,43 @@ } }, "api_stats": { - "total_requests": 95, - "successful_requests": 95, + "total_requests": 9479, + "successful_requests": 9479, "failed_requests": 0, "success_rate": 100.0, "endpoint_usage": { - "GET /api/v1/model": 44, - "POST /api/v1/run_plugin_gen_image": 5, - "POST /api/v1/inpaint": 26, - "GET /api/v1/realtime_status": 20 + "GET /api/v1/model": 3354, + "POST /api/v1/run_plugin_gen_image": 298, + "POST /api/v1/inpaint": 3040, + "GET /api/v1/realtime_status": 2787 }, "endpoint_stats": { "GET /api/v1/model": { - "count": 44, - "avg_time": 0.00349293513731523, - "min_time": 0.0007824897766113281, - "max_time": 0.008572578430175781, + "count": 3354, + "avg_time": 0.001591782569885254, + "min_time": 0.0004963874816894531, + "max_time": 0.003871917724609375, "current_concurrent": 0 }, "POST /api/v1/run_plugin_gen_image": { - "count": 5, - "avg_time": 1.928318691253662, - "min_time": 0.2756519317626953, - "max_time": 8.236981391906738, - "current_concurrent": 0 + "count": 298, + "avg_time": 0.6214150261878967, + "min_time": 0.1577005386352539, + "max_time": 9.059064388275146, + "current_concurrent": 1 }, "POST /api/v1/inpaint": { - "count": 26, - "avg_time": 1.5387938297711885, - "min_time": 0.4340169429779053, - "max_time": 7.625817060470581, + "count": 3040, + "avg_time": 0.6592595100402832, + "min_time": 0.3056967258453369, + "max_time": 2.1711950302124023, "current_concurrent": 2 }, "GET /api/v1/realtime_status": { - "count": 20, - "avg_time": 0.002240335941314697, - "min_time": 0.0006320476531982422, - "max_time": 0.006146907806396484, + "count": 2787, + "avg_time": 0.0018257951736450194, + "min_time": 0.0007917881011962891, + "max_time": 0.004314422607421875, "current_concurrent": 0 }, "POST /api/v1/remove_bg": { @@ -125,41 +125,41 @@ "current_concurrent": 0 } }, - "average_response_time": 0.524723462054604, - "min_response_time": 0.0006320476531982422, - "max_response_time": 8.236981391906738, - "current_concurrent": 2, - "max_concurrent": 7, - "requests_per_second": 1.6502782030794676, - "uptime": 57.5660514831543, + "average_response_time": 0.26329850912094116, + "min_response_time": 0.0004963874816894531, + "max_response_time": 9.481664896011353, + "current_concurrent": 3, + "max_concurrent": 10, + "requests_per_second": 2.134372224479969, + "uptime": 4441.1185131073, "recent_errors": [] }, "daily_stats": { "date": "2025-10-02", "images_processed": { - "inpaint": 26, + "inpaint": 3040, "remove_bg": 0, - "gen_image": 5, - "total": 31 + "gen_image": 298, + "total": 3338 }, "network": { - "bytes_uploaded": 39333149, - "bytes_downloaded": 25089494, - "requests_count": 95, - "mb_uploaded": 37.511013984680176, - "mb_downloaded": 23.92720603942871, - "gb_uploaded": 0.036631849594414234, - "gb_downloaded": 0.0233664121478796 + "bytes_uploaded": 3228232462, + "bytes_downloaded": 1961127959, + "requests_count": 9479, + "mb_uploaded": 3078.6823863983154, + "mb_downloaded": 1870.2773656845093, + "gb_uploaded": 3.006525767967105, + "gb_downloaded": 1.8264427399262786 }, "api_calls": { - "total": 95, - "success": 95, + "total": 9479, + "success": 9479, "failed": 0 }, "models_used": {}, - "peak_concurrent": 6, + "peak_concurrent": 9, "start_time": 1759384315.930352, - "last_update": 1759384373.4347339 + "last_update": 1759388756.0812397 }, - "timestamp": 1759384373.5121431 + "timestamp": 1759388757.0647824 } \ No newline at end of file