diff --git a/.gitattributes b/.gitattributes
index 4953df946f829c76f6c5fa373edd63150f9f83d9..42a581ded5fee5857526f92cf5f4c6422de6baa3 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -172,3 +172,6 @@ backend/uploads/generated/5b6f11b554f74c5486ce33e390f8c75d.png filter=lfs diff=l
backend/uploads/generated/836b20819d49430a9fc94c02e8e07885.png filter=lfs diff=lfs merge=lfs -text
backend/uploads/generated/d664c83e3b614760834cdaad28769340.png filter=lfs diff=lfs merge=lfs -text
backend/uploads/generated/dbd083972cf5430998885a9f7c36ac0a.png filter=lfs diff=lfs merge=lfs -text
+backend/texturas/Texture_wpc_deck/DECK_gris.png filter=lfs diff=lfs merge=lfs -text
+backend/texturas/Texture_wpc_deck/DECK_madera_oscuro.png filter=lfs diff=lfs merge=lfs -text
+backend/texturas/Texture_wpc_deck/DECK_madera.png filter=lfs diff=lfs merge=lfs -text
diff --git a/backend/.dockerignore b/backend/.dockerignore
index ecd53e19e5e0b70620f5a6062e6a06d0ee0527ad..c297828decf7aeab21c8a3236076f0b13a39a483 100644
--- a/backend/.dockerignore
+++ b/backend/.dockerignore
@@ -1,6 +1,6 @@
-.venv/
-__pycache__/
-*.pyc
-uploads/
-frontend/node_modules/
-frontend/dist/
+.venv/
+__pycache__/
+*.pyc
+uploads/
+frontend/node_modules/
+frontend/dist/
diff --git a/backend/.gitignore b/backend/.gitignore
index 64cf336708fa1a0223486f53b0c85792587aea65..cd07a5fd0062816e401518cdd239fa21ec66d166 100644
--- a/backend/.gitignore
+++ b/backend/.gitignore
@@ -1,33 +1,33 @@
-# Python
-__pycache__/
-*.py[cod]
-*.pyo
-*.pyd
-*.cover
-*.egg-info/
-.eggs/
-*.egg
-pip-log.txt
-pip-delete-this-directory.txt
-htmlcov/
-.tox/
-.coverage
-.coverage.*
-.cache
-.pytest_cache/
-.pytest_cache
-.env
-venv/
-ENV/
-env/
-*.env
-
-# VS Code
-.vscode/
-
-# Python virtual environment
-.venv/
-
-# OS files
-.DS_Store
-Thumbs.db
+# Python
+__pycache__/
+*.py[cod]
+*.pyo
+*.pyd
+*.cover
+*.egg-info/
+.eggs/
+*.egg
+pip-log.txt
+pip-delete-this-directory.txt
+htmlcov/
+.tox/
+.coverage
+.coverage.*
+.cache
+.pytest_cache/
+.pytest_cache
+.env
+venv/
+ENV/
+env/
+*.env
+
+# VS Code
+.vscode/
+
+# Python virtual environment
+.venv/
+
+# OS files
+.DS_Store
+Thumbs.db
diff --git a/backend/Dockerfile b/backend/Dockerfile
index 47326e62ba843d2cf67b2380c965ca5d6661d6ba..f03669bb72d922dca6fdfb060378526853ff51ee 100644
--- a/backend/Dockerfile
+++ b/backend/Dockerfile
@@ -1,29 +1,29 @@
-FROM python:3.12-slim
-
-ENV PYTHONDONTWRITEBYTECODE=1 \
- PYTHONUNBUFFERED=1 \
- PIP_NO_CACHE_DIR=1 \
- PORT=8000 \
- HF_HUB_DISABLE_PROGRESS_BARS=0
-
-WORKDIR /app
-
-RUN apt-get update \
- && apt-get install -y --no-install-recommends \
- git libglib2.0-0 libsm6 libxrender1 libxext6 libx11-6 libxcb1 libgl1 libgl1-mesa-dri \
- && rm -rf /var/lib/apt/lists/*
-
-COPY requirements.txt ./
-RUN python -m pip install --upgrade pip \
- && python -m pip install -r requirements.txt
-
-COPY . ./
-
-RUN chmod +x entrypoint.sh
-
-# /app/models is mounted as a volume so the SAM2 checkpoint persists across restarts
-VOLUME ["/app/models"]
-
-EXPOSE 8000
-
-ENTRYPOINT ["./entrypoint.sh"]
+FROM python:3.12-slim
+
+ENV PYTHONDONTWRITEBYTECODE=1 \
+ PYTHONUNBUFFERED=1 \
+ PIP_NO_CACHE_DIR=1 \
+ PORT=8000 \
+ HF_HUB_DISABLE_PROGRESS_BARS=0
+
+WORKDIR /app
+
+RUN apt-get update \
+ && apt-get install -y --no-install-recommends \
+ git libglib2.0-0 libsm6 libxrender1 libxext6 libx11-6 libxcb1 libgl1 libgl1-mesa-dri \
+ && rm -rf /var/lib/apt/lists/*
+
+COPY requirements.txt ./
+RUN python -m pip install --upgrade pip \
+ && python -m pip install -r requirements.txt
+
+COPY . ./
+
+RUN chmod +x entrypoint.sh
+
+# /app/models is mounted as a volume so the SAM2 checkpoint persists across restarts
+VOLUME ["/app/models"]
+
+EXPOSE 8000
+
+ENTRYPOINT ["./entrypoint.sh"]
diff --git a/backend/README.md b/backend/README.md
index 652e52f20ba339698c86cdb4c991361e9454b709..7d5694407e1b06269515082549b62c0f76a2d740 100644
--- a/backend/README.md
+++ b/backend/README.md
@@ -1,192 +1,192 @@
-# Backend - PoC SaaS Iframe
-
-Este documento explica cómo funciona el backend del proyecto, qué endpoints ofrece y cómo se integra con el frontend React.
-
-## Propósito
-
-El backend sirve como:
-
-- API para autenticación con token, configuración y gestión de sesiones.
-- servidor de archivos estáticos para el build de React en producción (`frontend/dist`).
-- punto de entrada de administración, preview y experiencia embebida.
-- watcher opcional que reconstruye el frontend cuando cambian los archivos fuente.
-
-## Estructura principal
-
-- `main.py` - servidor FastAPI principal.
-- `requirements.txt` - dependencias Python.
-- `run_server.bat` - helper para arrancar el backend con el virtual environment local.
-- `.venv/` - entorno virtual Python del backend.
-- `home.html`, `admin.html`, `preview.html` - páginas de apoyo.
-
-## Cómo ejecutar
-
-### Activar entorno virtual
-
-En Windows CMD:
-
-```cmd
-cd /d C:\Users\alane\OneDrive\Escritorio\Prueba-PoC\backend
-.venv\Scripts\activate
-```
-
-En PowerShell:
-
-```powershell
-cd C:\Users\alane\OneDrive\Escritorio\Prueba-PoC\backend
-.\.venv\Scripts\Activate.ps1
-```
-
-### Instalar dependencias
-
-```cmd
-pip install -r requirements.txt
-```
-
-### Ejecutar servidor
-
-```cmd
-python -m uvicorn main:app --reload --host 0.0.0.0 --port 8000
-```
-
-O usar el helper:
-
-```cmd
-run_server.bat
-```
-
-## Comportamiento de producción
-
-En producción, el backend sirve el build de React desde `frontend/dist` en la ruta `/app`.
-
-- El HTML principal se carga en `/app`
-- Los assets de Vite se sirven en `/app/assets/...`
-- Si `frontend/dist/index.html` no existe, se devuelve un mensaje de error claro.
-
-## Endpoints principales
-
-### Páginas y visualización
-
-- `GET /` - `home.html`
-- `GET /preview` - `preview.html`
-- `GET /admin` - `admin.html`
-- `GET /app` - React app estática servida desde `frontend/dist`
-- `GET /widget.js` - script JS que inyecta un iframe con el visualizador
-- `GET /health` - estado del backend y si el frontend build está listo
-
-### API de integración
-
-- `POST /api/token` - genera un token temporal para `client_id`
-- `GET /config` - devuelve datos del cliente según `client_id` o `token`
-- `POST /session/start` - marca la sesión como activa
-- `GET /api/keys` - lista clientes registrados
-- `POST /api/generate-key` - genera una nueva API key de cliente
-- `GET /api/active-sessions` - muestra sesiones activas actuales
-
-## Lógica de token y cliente
-
-### Validación de token
-
-- Los tokens se guardan en memoria en `TOKENS`
-- Cada token vence después de `TOKEN_TTL` segundos
-- Si el token ha expirado, se devuelve `401`
-
-### Configuración del cliente
-
-- El diccionario `CLIENTS` contiene los clientes registrados por defecto
-- Cada cliente tiene `nombre`, `color_primario` y `created_at`
-- `POST /api/generate-key` agrega un nuevo cliente a `CLIENTS`
-
-## Seguridad y headers importantes
-
-El backend habilita:
-
-- CORS abierto (`allow_origins=["*"]`) para facilitar el desarrollo
-- Eliminación de `x-frame-options` en todas las respuestas
-- Agrega `Content-Security-Policy: frame-ancestors *` para permitir iframes
-
-## Watcher automático de frontend
-
-El backend también incluye un watcher que observa cambios en el frontend y ejecuta `npm run build` automáticamente.
-
-### Qué archivos vigila
-
-- `frontend/src/**/*.{ts,tsx,js,jsx,css,json,html}`
-- `frontend/vite.config.ts`
-- `frontend/package.json`
-- `frontend/tsconfig.json`
-
-### Cómo funciona
-
-- Si el backend está ejecutándose, el watcher corre en un hilo daemon.
-- Cuando detecta cambios, ejecuta `npm run build` en `frontend/`.
-- El resultado actualiza `frontend/dist` para que `/app` sirva la versión nueva.
-
-### Requisitos del watcher
-
-- Necesitas tener `npm` instalado y accesible desde el PATH.
-- El backend debe arrancarse desde el directorio raíz del proyecto.
-
-## Desarrollo y producción
-
-### Desarrollo
-
-- Para trabajar en el frontend con hot reload, usa el dev server de Vite:
-
-```cmd
-cd /d C:\Users\alane\OneDrive\Escritorio\Prueba-PoC\frontend
-npm run dev
-```
-
-- Abre `http://localhost:5173/app?token=...`
-
-### Producción / backend
-
-- Para servir el frontend estático desde el backend:
-
-```cmd
-cd /d C:\Users\alane\OneDrive\Escritorio\Prueba-PoC\frontend
-npm run build
-```
-
-- Luego carga `http://localhost:8000/app?token=...`
-
-## Integración con hyper-ferreteria
-
-Este backend puede montar la lógica de `hyper-ferreteria` en un prefijo alterno para evitar conflictos de rutas.
-
-- Se carga si la carpeta `../hyper-ferreteria` existe junto al directorio `Prueba-PoC`.
-- La integración queda disponible en `http://localhost:8000/hf`.
-- Las rutas internas de `hyper-ferreteria` se exponen como:
- - `http://localhost:8000/hf/upload_async`
- - `http://localhost:8000/hf/segment_guided`
- - `http://localhost:8000/hf/analyze_scene`
- - `http://localhost:8000/hf/apply_texture`
- - `http://localhost:8000/hf/textures`
- - `http://localhost:8000/hf/image/{filename}`
- - `http://localhost:8000/hf/masks/{filename}`
- - `http://localhost:8000/hf/ai/{filename}`
- - y otras rutas de `hyper-ferreteria` con el prefijo `/hf`
-
-## Docker
-
-Se añadió soporte Docker al backend con un `Dockerfile` y `.dockerignore`.
-
-- El contenedor expone el puerto `8000`.
-- El servicio arranca con `uvicorn main:app --host 0.0.0.0 --port 8000`.
-- El `requirements.txt` del backend fue ampliado para incluir las dependencias de `hyper-ferreteria`.
-
-Para construir y correr:
-
-```cmd
-cd /d C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend
-docker build -t prueba-poc-backend .
-docker run -p 8000:8000 prueba-poc-backend
-```
-
-## Notas para nuevos desarrolladores
-
-- El backend es el origen de verdad para la lógica de seguridad y sesiones.
-- El frontend puede correr en modo dev para desarrollo rápido.
-- En producción, el backend usa el build estático de React.
-- Si un cambio en `frontend/src` no se refleja, revisa si estás usando `5173` (dev) o `8000` (backend+build).
+# Backend - PoC SaaS Iframe
+
+Este documento explica cómo funciona el backend del proyecto, qué endpoints ofrece y cómo se integra con el frontend React.
+
+## Propósito
+
+El backend sirve como:
+
+- API para autenticación con token, configuración y gestión de sesiones.
+- servidor de archivos estáticos para el build de React en producción (`frontend/dist`).
+- punto de entrada de administración, preview y experiencia embebida.
+- watcher opcional que reconstruye el frontend cuando cambian los archivos fuente.
+
+## Estructura principal
+
+- `main.py` - servidor FastAPI principal.
+- `requirements.txt` - dependencias Python.
+- `run_server.bat` - helper para arrancar el backend con el virtual environment local.
+- `.venv/` - entorno virtual Python del backend.
+- `home.html`, `admin.html`, `preview.html` - páginas de apoyo.
+
+## Cómo ejecutar
+
+### Activar entorno virtual
+
+En Windows CMD:
+
+```cmd
+cd /d C:\Users\alane\OneDrive\Escritorio\Prueba-PoC\backend
+.venv\Scripts\activate
+```
+
+En PowerShell:
+
+```powershell
+cd C:\Users\alane\OneDrive\Escritorio\Prueba-PoC\backend
+.\.venv\Scripts\Activate.ps1
+```
+
+### Instalar dependencias
+
+```cmd
+pip install -r requirements.txt
+```
+
+### Ejecutar servidor
+
+```cmd
+python -m uvicorn main:app --reload --host 0.0.0.0 --port 8000
+```
+
+O usar el helper:
+
+```cmd
+run_server.bat
+```
+
+## Comportamiento de producción
+
+En producción, el backend sirve el build de React desde `frontend/dist` en la ruta `/app`.
+
+- El HTML principal se carga en `/app`
+- Los assets de Vite se sirven en `/app/assets/...`
+- Si `frontend/dist/index.html` no existe, se devuelve un mensaje de error claro.
+
+## Endpoints principales
+
+### Páginas y visualización
+
+- `GET /` - `home.html`
+- `GET /preview` - `preview.html`
+- `GET /admin` - `admin.html`
+- `GET /app` - React app estática servida desde `frontend/dist`
+- `GET /widget.js` - script JS que inyecta un iframe con el visualizador
+- `GET /health` - estado del backend y si el frontend build está listo
+
+### API de integración
+
+- `POST /api/token` - genera un token temporal para `client_id`
+- `GET /config` - devuelve datos del cliente según `client_id` o `token`
+- `POST /session/start` - marca la sesión como activa
+- `GET /api/keys` - lista clientes registrados
+- `POST /api/generate-key` - genera una nueva API key de cliente
+- `GET /api/active-sessions` - muestra sesiones activas actuales
+
+## Lógica de token y cliente
+
+### Validación de token
+
+- Los tokens se guardan en memoria en `TOKENS`
+- Cada token vence después de `TOKEN_TTL` segundos
+- Si el token ha expirado, se devuelve `401`
+
+### Configuración del cliente
+
+- El diccionario `CLIENTS` contiene los clientes registrados por defecto
+- Cada cliente tiene `nombre`, `color_primario` y `created_at`
+- `POST /api/generate-key` agrega un nuevo cliente a `CLIENTS`
+
+## Seguridad y headers importantes
+
+El backend habilita:
+
+- CORS abierto (`allow_origins=["*"]`) para facilitar el desarrollo
+- Eliminación de `x-frame-options` en todas las respuestas
+- Agrega `Content-Security-Policy: frame-ancestors *` para permitir iframes
+
+## Watcher automático de frontend
+
+El backend también incluye un watcher que observa cambios en el frontend y ejecuta `npm run build` automáticamente.
+
+### Qué archivos vigila
+
+- `frontend/src/**/*.{ts,tsx,js,jsx,css,json,html}`
+- `frontend/vite.config.ts`
+- `frontend/package.json`
+- `frontend/tsconfig.json`
+
+### Cómo funciona
+
+- Si el backend está ejecutándose, el watcher corre en un hilo daemon.
+- Cuando detecta cambios, ejecuta `npm run build` en `frontend/`.
+- El resultado actualiza `frontend/dist` para que `/app` sirva la versión nueva.
+
+### Requisitos del watcher
+
+- Necesitas tener `npm` instalado y accesible desde el PATH.
+- El backend debe arrancarse desde el directorio raíz del proyecto.
+
+## Desarrollo y producción
+
+### Desarrollo
+
+- Para trabajar en el frontend con hot reload, usa el dev server de Vite:
+
+```cmd
+cd /d C:\Users\alane\OneDrive\Escritorio\Prueba-PoC\frontend
+npm run dev
+```
+
+- Abre `http://localhost:5173/app?token=...`
+
+### Producción / backend
+
+- Para servir el frontend estático desde el backend:
+
+```cmd
+cd /d C:\Users\alane\OneDrive\Escritorio\Prueba-PoC\frontend
+npm run build
+```
+
+- Luego carga `http://localhost:8000/app?token=...`
+
+## Integración con hyper-ferreteria
+
+Este backend puede montar la lógica de `hyper-ferreteria` en un prefijo alterno para evitar conflictos de rutas.
+
+- Se carga si la carpeta `../hyper-ferreteria` existe junto al directorio `Prueba-PoC`.
+- La integración queda disponible en `http://localhost:8000/hf`.
+- Las rutas internas de `hyper-ferreteria` se exponen como:
+ - `http://localhost:8000/hf/upload_async`
+ - `http://localhost:8000/hf/segment_guided`
+ - `http://localhost:8000/hf/analyze_scene`
+ - `http://localhost:8000/hf/apply_texture`
+ - `http://localhost:8000/hf/textures`
+ - `http://localhost:8000/hf/image/{filename}`
+ - `http://localhost:8000/hf/masks/{filename}`
+ - `http://localhost:8000/hf/ai/{filename}`
+ - y otras rutas de `hyper-ferreteria` con el prefijo `/hf`
+
+## Docker
+
+Se añadió soporte Docker al backend con un `Dockerfile` y `.dockerignore`.
+
+- El contenedor expone el puerto `8000`.
+- El servicio arranca con `uvicorn main:app --host 0.0.0.0 --port 8000`.
+- El `requirements.txt` del backend fue ampliado para incluir las dependencias de `hyper-ferreteria`.
+
+Para construir y correr:
+
+```cmd
+cd /d C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend
+docker build -t prueba-poc-backend .
+docker run -p 8000:8000 prueba-poc-backend
+```
+
+## Notas para nuevos desarrolladores
+
+- El backend es el origen de verdad para la lógica de seguridad y sesiones.
+- El frontend puede correr en modo dev para desarrollo rápido.
+- En producción, el backend usa el build estático de React.
+- Si un cambio en `frontend/src` no se refleja, revisa si estás usando `5173` (dev) o `8000` (backend+build).
diff --git a/backend/admin.html b/backend/admin.html
index d6033f52cebe7b9e4d40631d65b90ef1d21f7814..042c0bf8823620d2d6f980f40c774ce49d919ec9 100644
--- a/backend/admin.html
+++ b/backend/admin.html
@@ -1,202 +1,202 @@
-
-
-
-
-
- Panel de Control SaaS
-
-
-
-
-
-
-
Panel de Control SaaS
-
- Desde aquí puedes ver usuarios activos, generar nuevas API keys y
- obtener el script de integración.
-
+ El desarrollador debe insertar un contenedor y el script del widget
+ en su HTML:
+
+
+
+
+ Reemplaza ID_UNICO_DEL_CLIENTE_001 por la API key
+ generada.
+
+
+
+
+
+
+
Clientes registrados
+
+
+
+
Usuarios activos
+
+
+
+
+
+
+
+
diff --git a/backend/core/config.py b/backend/core/config.py
index b68f5980d84d7567c7af9d67583eef8d94fe5132..042d330b6933c69fffee90bdb6c670dd01c457c0 100644
--- a/backend/core/config.py
+++ b/backend/core/config.py
@@ -1,92 +1,92 @@
-import logging
-import os
-import time
-from datetime import datetime, timezone
-from pathlib import Path
-
-BASE_DIR = Path(__file__).resolve().parent.parent
-
-UPLOAD_DIR = BASE_DIR / "uploads"
-UPLOAD_DIR.mkdir(parents=True, exist_ok=True)
-
-VIDEO_UPLOAD_DIR = UPLOAD_DIR / "videos"
-VIDEO_UPLOAD_DIR.mkdir(parents=True, exist_ok=True)
-
-OUTPUT_DIR = BASE_DIR / "outputs"
-OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
-
-VIDEO_OUTPUT_DIR = OUTPUT_DIR / "videos"
-VIDEO_OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
-
-TEXTURE_DIR = BASE_DIR / "texturas"
-TEXTURE_DIR.mkdir(parents=True, exist_ok=True)
-
-LOG_DIR = BASE_DIR / "logs"
-LOG_DIR.mkdir(exist_ok=True)
-
-TEMPLATES_DIR = BASE_DIR / "templates"
-TEMPLATES_DIR.mkdir(parents=True, exist_ok=True)
-
-CLASSIC_DASHBOARD_HTML_PATH = TEMPLATES_DIR / "classic_dashboard.html"
-
-logging.basicConfig(
- level=logging.INFO,
- format="%(asctime)s %(levelname)s %(name)s: %(message)s",
- handlers=[
- logging.FileHandler(LOG_DIR / "app.log", encoding="utf-8"),
- logging.StreamHandler(),
- ],
-)
-logger = logging.getLogger("backend.segmentation")
-
-SAM2_CONFIG_PATH = os.getenv("SAM2_CONFIG_PATH", "configs/sam2.1/sam2.1_hiera_l.yaml")
-SAM2_MODEL_PATH = os.getenv("SAM2_MODEL_PATH")
-SAM2_DEFAULT_MODEL_NAMES = (
- "sam2.1_hiera_large_fresh.pt",
- "sam2.1_hiera_large.pt",
- "sam2.1_hiera_large.pth",
- "sam2_hiera_large.pt",
-)
-SAM2_MODEL_DIR_CANDIDATES = ("models", "modelo")
-SAM2_UNLOAD_AFTER_USE = str(os.getenv("SAM2_UNLOAD_AFTER_USE", "0")).strip().lower() in {"1", "true", "yes"}
-FRONTEND_DEBUG = str(os.getenv("FRONTEND_DEBUG", "0")).strip().lower() in {"1", "true", "yes", "on"}
-
-# URL del Space de Gradio GPU (principal). Si falla, se usa el CPU fallback.
-# Local: http://localhost:7860
-# Producción: https://.hf.space
-GRADIO_SPACE_URL: str = os.getenv("GRADIO_SPACE_URL", "").rstrip("/")
-
-# URL del Space de Gradio CPU (respaldo automático si el GPU falla o agota quota).
-GRADIO_CPU_FALLBACK_URL: str = os.getenv("GRADIO_CPU_FALLBACK_URL", "").rstrip("/")
-
-MAX_UPLOAD_WIDTH = 1024
-UPLOAD_JPEG_QUALITY = 82
-SD_JOB_STALE_SECONDS = 120
-UPLOAD_JOB_STALE_SECONDS = 900
-UPLOAD_BASE_SECONDS = 8.0
-UPLOAD_SECONDS_PER_MEGAPIXEL = 70.0
-SD_QUICK_TIMEOUT_SECONDS = 15.0
-
-SEMANTIC_MODEL_ID = "nvidia/segformer-b5-finetuned-ade-640-640"
-DEPTH_MODEL_ID = "Intel/dpt-hybrid-midas"
-
-
-def utc_now_iso() -> str:
- return datetime.now(timezone.utc).isoformat()
-
-
-def log_timing_start(step_name: str) -> float:
- started = time.perf_counter()
- logger.info(f"[{step_name}] START at {utc_now_iso()}")
- return started
-
-
-def log_timing_end(step_name: str, started: float) -> None:
- elapsed = time.perf_counter() - started
- logger.info(f"[{step_name}] DONE {elapsed:.3f}s at {utc_now_iso()}")
-
-
-def load_classic_dashboard_html() -> str:
- if not CLASSIC_DASHBOARD_HTML_PATH.exists() or not CLASSIC_DASHBOARD_HTML_PATH.is_file():
- raise RuntimeError(f"Dashboard HTML template not found: {CLASSIC_DASHBOARD_HTML_PATH}")
- return CLASSIC_DASHBOARD_HTML_PATH.read_text(encoding="utf-8")
+import logging
+import os
+import time
+from datetime import datetime, timezone
+from pathlib import Path
+
+BASE_DIR = Path(__file__).resolve().parent.parent
+
+UPLOAD_DIR = BASE_DIR / "uploads"
+UPLOAD_DIR.mkdir(parents=True, exist_ok=True)
+
+VIDEO_UPLOAD_DIR = UPLOAD_DIR / "videos"
+VIDEO_UPLOAD_DIR.mkdir(parents=True, exist_ok=True)
+
+OUTPUT_DIR = BASE_DIR / "outputs"
+OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
+
+VIDEO_OUTPUT_DIR = OUTPUT_DIR / "videos"
+VIDEO_OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
+
+TEXTURE_DIR = BASE_DIR / "texturas"
+TEXTURE_DIR.mkdir(parents=True, exist_ok=True)
+
+LOG_DIR = BASE_DIR / "logs"
+LOG_DIR.mkdir(exist_ok=True)
+
+TEMPLATES_DIR = BASE_DIR / "templates"
+TEMPLATES_DIR.mkdir(parents=True, exist_ok=True)
+
+CLASSIC_DASHBOARD_HTML_PATH = TEMPLATES_DIR / "classic_dashboard.html"
+
+logging.basicConfig(
+ level=logging.INFO,
+ format="%(asctime)s %(levelname)s %(name)s: %(message)s",
+ handlers=[
+ logging.FileHandler(LOG_DIR / "app.log", encoding="utf-8"),
+ logging.StreamHandler(),
+ ],
+)
+logger = logging.getLogger("backend.segmentation")
+
+SAM2_CONFIG_PATH = os.getenv("SAM2_CONFIG_PATH", "configs/sam2.1/sam2.1_hiera_l.yaml")
+SAM2_MODEL_PATH = os.getenv("SAM2_MODEL_PATH")
+SAM2_DEFAULT_MODEL_NAMES = (
+ "sam2.1_hiera_large_fresh.pt",
+ "sam2.1_hiera_large.pt",
+ "sam2.1_hiera_large.pth",
+ "sam2_hiera_large.pt",
+)
+SAM2_MODEL_DIR_CANDIDATES = ("models", "modelo")
+SAM2_UNLOAD_AFTER_USE = str(os.getenv("SAM2_UNLOAD_AFTER_USE", "0")).strip().lower() in {"1", "true", "yes"}
+FRONTEND_DEBUG = str(os.getenv("FRONTEND_DEBUG", "0")).strip().lower() in {"1", "true", "yes", "on"}
+
+# URL del Space de Gradio GPU (principal). Si falla, se usa el CPU fallback.
+# Local: http://localhost:7860
+# Producción: https://.hf.space
+GRADIO_SPACE_URL: str = os.getenv("GRADIO_SPACE_URL", "").rstrip("/")
+
+# URL del Space de Gradio CPU (respaldo automático si el GPU falla o agota quota).
+GRADIO_CPU_FALLBACK_URL: str = os.getenv("GRADIO_CPU_FALLBACK_URL", "").rstrip("/")
+
+MAX_UPLOAD_WIDTH = 1024
+UPLOAD_JPEG_QUALITY = 82
+SD_JOB_STALE_SECONDS = 120
+UPLOAD_JOB_STALE_SECONDS = 900
+UPLOAD_BASE_SECONDS = 8.0
+UPLOAD_SECONDS_PER_MEGAPIXEL = 70.0
+SD_QUICK_TIMEOUT_SECONDS = 15.0
+
+SEMANTIC_MODEL_ID = "nvidia/segformer-b5-finetuned-ade-640-640"
+DEPTH_MODEL_ID = "Intel/dpt-hybrid-midas"
+
+
+def utc_now_iso() -> str:
+ return datetime.now(timezone.utc).isoformat()
+
+
+def log_timing_start(step_name: str) -> float:
+ started = time.perf_counter()
+ logger.info(f"[{step_name}] START at {utc_now_iso()}")
+ return started
+
+
+def log_timing_end(step_name: str, started: float) -> None:
+ elapsed = time.perf_counter() - started
+ logger.info(f"[{step_name}] DONE {elapsed:.3f}s at {utc_now_iso()}")
+
+
+def load_classic_dashboard_html() -> str:
+ if not CLASSIC_DASHBOARD_HTML_PATH.exists() or not CLASSIC_DASHBOARD_HTML_PATH.is_file():
+ raise RuntimeError(f"Dashboard HTML template not found: {CLASSIC_DASHBOARD_HTML_PATH}")
+ return CLASSIC_DASHBOARD_HTML_PATH.read_text(encoding="utf-8")
diff --git a/backend/home.html b/backend/home.html
index 208f040e1fdb5a29cb42614b737a12ad6a005e72..334e661bce929a170efdc2ba35c9e2fbe415df07 100644
--- a/backend/home.html
+++ b/backend/home.html
@@ -1,61 +1,61 @@
-
-
-
-
-
- Home - SaaS Dev
-
-
-
-
-
-
Home de desarrollo
-
- Esta página es la landing principal para el equipo de desarrollo.
- Desde aquí puedes acceder al panel administrador, la vista previa y al
- app embebido.
-
- Mover el app a /app y mantener / como
- landing de desarrollo es una buena práctica. Así el servidor puede
- servir contenido para el equipo sin confundirlo con la ruta del
- producto embebido.
-
-
-
-
-
+
+
+
+
+
+ Home - SaaS Dev
+
+
+
+
+
+
Home de desarrollo
+
+ Esta página es la landing principal para el equipo de desarrollo.
+ Desde aquí puedes acceder al panel administrador, la vista previa y al
+ app embebido.
+
+ Mover el app a /app y mantener / como
+ landing de desarrollo es una buena práctica. Así el servidor puede
+ servir contenido para el equipo sin confundirlo con la ruta del
+ producto embebido.
+
+
+
+
+
diff --git a/backend/logs/app.log b/backend/logs/app.log
index 04000c174eb2e2d9cf6fd0b89d6894bce2c2ff0b..98d720fe46c0cd70a8c5b2bb7e589a41895d441a 100644
--- a/backend/logs/app.log
+++ b/backend/logs/app.log
@@ -1,5220 +1,2392 @@
-2026-04-29 20:12:40,375 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-29 20:13:22,434 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69f2bac20e0544b45d45e6f1"}, "remainingTimeMS": 30}
-2026-04-29 20:13:53,491 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:13:53.491443+00:00
-2026-04-29 20:13:53,492 INFO backend.segmentation: [JOB 667a8562af1044a6926d53449b625dd6] preparing_image progress=12
-2026-04-29 20:13:53,743 INFO backend.segmentation: [JOB 667a8562af1044a6926d53449b625dd6] segmenting_with_sam2 progress=30 estimated_seconds=51.939840000000004
-2026-04-29 20:13:56,153 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-29 20:13:56,625 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-29 20:13:56,675 WARNING services.gradio_client_service: Gradio Space call failed, falling back to local SAM2: Cannot find a function with `api_name`: /segment.
-2026-04-29 20:13:56,675 INFO backend.segmentation: [SAM2_GENERATE] START at 2026-04-30T02:13:56.675848+00:00
-2026-04-29 20:13:56,687 INFO backend.segmentation: [SAM2] Mask generator not loaded; attempting on-demand load.
-2026-04-29 20:13:56,687 WARNING backend.segmentation: [SAM2] torch not installed — SAM2 unavailable (using Gradio Space)
-2026-04-29 20:13:56,687 ERROR backend.segmentation: [JOB 667a8562af1044a6926d53449b625dd6] failed: 500: torch not installed — SAM2 unavailable (using Gradio Space)
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 145, in run_upload_job
- label_map, mask_count = generate_label_map(image_rgb)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\scene_service.py", line 134, in generate_label_map
- generator = get_sam2_mask_generator()
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\sam2_service.py", line 184, in get_sam2_mask_generator
- raise HTTPException(status_code=500, detail=detail)
-fastapi.exceptions.HTTPException: 500: torch not installed — SAM2 unavailable (using Gradio Space)
-2026-04-29 20:13:56,689 INFO backend.segmentation: [UPLOAD_BG] DONE 3.196s at 2026-04-30T02:13:56.689353+00:00
-2026-04-29 20:13:56,689 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-29 20:13:57,044 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-29 20:13:57,163 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/68121945-8a97-442e-8cbb-59cd817f9df3 "HTTP/1.1 200 OK"
-2026-04-29 20:16:38,951 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-29 20:16:55,032 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:16:55.032702+00:00
-2026-04-29 20:16:55,032 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] preparing_image progress=12
-2026-04-29 20:16:55,089 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] segmenting_with_sam2 progress=30 estimated_seconds=51.939840000000004
-2026-04-29 20:16:57,866 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-04-29 20:17:00,098 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-29 20:17:00,613 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-29 20:17:02,540 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/06d3302a-135c-423c-8294-e950bff0a17a "HTTP/1.1 200 OK"
-2026-04-29 20:17:02,542 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-29 20:17:04,774 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-29 20:17:07,079 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=06d3302a-135c-423c-8294-e950bff0a17a "HTTP/1.1 200 OK"
-2026-04-29 20:17:26,593 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\b17b68f6472ad2c6c0bb7499f231e242c50b344237d319bd3b45d56ef2d488aa\image.webp "HTTP/1.1 200 OK"
-2026-04-29 20:17:26,607 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🌳 Terraza / Patio / Jardín motor=Híbrido Arquitectura (Cityscapes Grande + DINO Pequeño) mask_count=20
-2026-04-29 20:17:26,607 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] saving_masks progress=92
-2026-04-29 20:17:26,690 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] segments_meta saved (20 segments)
-2026-04-29 20:17:26,690 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] done mask_count=20
-2026-04-29 20:17:26,691 INFO backend.segmentation: [UPLOAD_BG] DONE 31.658s at 2026-04-30T02:17:26.691033+00:00
-2026-04-29 20:17:26,691 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-29 20:17:45,867 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:17:45.867306+00:00
-2026-04-29 20:17:46,402 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
-2026-04-29 20:17:46,702 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.835s at 2026-04-30T02:17:46.702156+00:00
-2026-04-29 20:17:50,496 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:17:50.496976+00:00
-2026-04-29 20:17:50,819 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
-2026-04-29 20:17:50,985 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.488s at 2026-04-30T02:17:50.985122+00:00
-2026-04-29 20:17:54,307 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:17:54.307539+00:00
-2026-04-29 20:17:54,768 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
-2026-04-29 20:17:54,931 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.624s at 2026-04-30T02:17:54.931489+00:00
-2026-04-29 20:17:56,247 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:17:56.247254+00:00
-2026-04-29 20:17:56,728 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
-2026-04-29 20:17:56,898 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.651s at 2026-04-30T02:17:56.898353+00:00
-2026-04-29 20:18:00,146 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:00.146989+00:00
-2026-04-29 20:18:00,616 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
-2026-04-29 20:18:00,782 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.636s at 2026-04-30T02:18:00.782444+00:00
-2026-04-29 20:18:05,560 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:05.560412+00:00
-2026-04-29 20:18:06,116 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
-2026-04-29 20:18:06,272 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.712s at 2026-04-30T02:18:06.272748+00:00
-2026-04-29 20:18:11,868 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:18:11.868080+00:00
-2026-04-29 20:18:11,868 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] preparing_image progress=12
-2026-04-29 20:18:11,941 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-29 20:18:14,341 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-04-29 20:18:16,543 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-29 20:18:16,695 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-29 20:18:18,825 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e332d34b-376c-4071-9631-656973e262a0 "HTTP/1.1 200 OK"
-2026-04-29 20:18:18,828 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-29 20:18:21,032 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-29 20:18:23,304 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e332d34b-376c-4071-9631-656973e262a0 "HTTP/1.1 200 OK"
-2026-04-29 20:18:36,010 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7b5a7a453887652d3284bb9eabe628e95982e15d5e0f16ff718d22beb5ed2a72\image.webp "HTTP/1.1 200 OK"
-2026-04-29 20:18:36,020 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
-2026-04-29 20:18:36,021 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] saving_masks progress=92
-2026-04-29 20:18:36,063 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] segments_meta saved (14 segments)
-2026-04-29 20:18:36,063 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] done mask_count=18
-2026-04-29 20:18:36,063 INFO backend.segmentation: [UPLOAD_BG] DONE 24.195s at 2026-04-30T02:18:36.063054+00:00
-2026-04-29 20:18:36,063 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-29 20:18:44,885 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:44.885155+00:00
-2026-04-29 20:18:45,431 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:18:45,591 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.706s at 2026-04-30T02:18:45.591016+00:00
-2026-04-29 20:18:49,898 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:49.898853+00:00
-2026-04-29 20:18:50,427 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:18:50,573 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.674s at 2026-04-30T02:18:50.573101+00:00
-2026-04-29 20:18:52,643 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:52.643494+00:00
-2026-04-29 20:18:53,101 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:18:53,259 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.615s at 2026-04-30T02:18:53.259095+00:00
-2026-04-29 20:18:55,884 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:55.884791+00:00
-2026-04-29 20:18:56,336 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:18:56,483 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.599s at 2026-04-30T02:18:56.483159+00:00
-2026-04-29 20:18:58,689 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:58.689702+00:00
-2026-04-29 20:18:59,139 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:18:59,285 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.596s at 2026-04-30T02:18:59.285688+00:00
-2026-04-29 20:19:01,587 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:01.587113+00:00
-2026-04-29 20:19:02,057 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:19:02,202 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.616s at 2026-04-30T02:19:02.202912+00:00
-2026-04-29 20:19:08,881 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:08.881813+00:00
-2026-04-29 20:19:09,450 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:19:09,598 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.716s at 2026-04-30T02:19:09.598660+00:00
-2026-04-29 20:19:14,081 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:14.081047+00:00
-2026-04-29 20:19:14,613 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:19:14,765 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.684s at 2026-04-30T02:19:14.765513+00:00
-2026-04-29 20:19:20,588 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:20.588691+00:00
-2026-04-29 20:19:21,001 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:19:21,148 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.560s at 2026-04-30T02:19:21.148963+00:00
-2026-04-29 20:19:26,717 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:19:26.717015+00:00
-2026-04-29 20:19:26,717 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] preparing_image progress=12
-2026-04-29 20:19:26,784 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-29 20:19:29,222 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-04-29 20:19:31,597 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-29 20:19:31,734 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-29 20:19:34,073 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/19c5143b-64ec-4b5d-942b-098f7096a07d "HTTP/1.1 200 OK"
-2026-04-29 20:19:34,076 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-29 20:19:36,338 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-29 20:19:38,618 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=19c5143b-64ec-4b5d-942b-098f7096a07d "HTTP/1.1 200 OK"
-2026-04-29 20:19:50,817 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\627367a96ce0d7cea77d51e3b57be3a803ddd9b06e2c8a9547129f322756dd05\image.webp "HTTP/1.1 200 OK"
-2026-04-29 20:19:50,828 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=13
-2026-04-29 20:19:50,828 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] saving_masks progress=92
-2026-04-29 20:19:50,860 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] segments_meta saved (13 segments)
-2026-04-29 20:19:50,861 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] done mask_count=13
-2026-04-29 20:19:50,861 INFO backend.segmentation: [UPLOAD_BG] DONE 24.145s at 2026-04-30T02:19:50.861597+00:00
-2026-04-29 20:19:50,861 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-29 20:19:58,632 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:58.632422+00:00
-2026-04-29 20:19:58,950 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:19:59,096 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.464s at 2026-04-30T02:19:59.096073+00:00
-2026-04-29 20:20:03,025 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:20:03.025850+00:00
-2026-04-29 20:20:03,491 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:20:03,640 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.615s at 2026-04-30T02:20:03.640105+00:00
-2026-04-29 20:20:20,501 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:20:20.501928+00:00
-2026-04-29 20:20:21,076 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:20:21,227 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.727s at 2026-04-30T02:20:21.227737+00:00
-2026-04-29 20:20:28,266 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:20:28.266563+00:00
-2026-04-29 20:20:28,768 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:20:28,935 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.669s at 2026-04-30T02:20:28.935807+00:00
-2026-04-29 20:20:35,728 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:20:35.728058+00:00
-2026-04-29 20:20:35,729 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] preparing_image progress=12
-2026-04-29 20:20:35,790 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-29 20:20:38,252 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-04-29 20:20:40,610 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-29 20:20:40,810 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-29 20:20:43,106 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/31bdf8c4-3e85-4561-b055-cb540bff6222 "HTTP/1.1 200 OK"
-2026-04-29 20:20:43,110 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-29 20:20:45,435 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-29 20:20:47,968 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=31bdf8c4-3e85-4561-b055-cb540bff6222 "HTTP/1.1 200 OK"
-2026-04-29 20:21:09,199 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\de39b2da096587a3b0e0d7fb57541b12755192b377f4914a8047c40356bfbf4a\image.webp "HTTP/1.1 200 OK"
-2026-04-29 20:21:09,216 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=30
-2026-04-29 20:21:09,217 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] saving_masks progress=92
-2026-04-29 20:21:09,330 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] segments_meta saved (18 segments)
-2026-04-29 20:21:09,330 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] done mask_count=30
-2026-04-29 20:21:09,331 INFO backend.segmentation: [UPLOAD_BG] DONE 33.603s at 2026-04-30T02:21:09.331315+00:00
-2026-04-29 20:21:09,331 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-29 20:21:19,563 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:21:19.563482+00:00
-2026-04-29 20:21:19,875 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:21:20,037 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.474s at 2026-04-30T02:21:20.037544+00:00
-2026-04-29 20:21:27,716 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:21:27.716717+00:00
-2026-04-29 20:21:28,240 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:21:28,388 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.671s at 2026-04-30T02:21:28.388007+00:00
-2026-04-29 20:21:33,770 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:21:33.770053+00:00
-2026-04-29 20:21:34,297 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:21:34,445 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.676s at 2026-04-30T02:21:34.445668+00:00
-2026-04-29 20:21:45,556 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:21:45.556315+00:00
-2026-04-29 20:21:46,063 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:21:46,214 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.658s at 2026-04-30T02:21:46.214366+00:00
-2026-04-29 20:21:54,885 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:21:54.885450+00:00
-2026-04-29 20:21:54,886 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] preparing_image progress=12
-2026-04-29 20:21:55,003 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] segmenting_with_sam2 progress=30 estimated_seconds=138.4576
-2026-04-29 20:21:57,389 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-04-29 20:21:59,757 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-29 20:21:59,891 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-29 20:22:02,312 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-29 20:22:02,322 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/3f8ed7a1-4b28-46c2-9e01-7e4358b38e76 "HTTP/1.1 200 OK"
-2026-04-29 20:22:04,682 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-29 20:22:07,179 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=3f8ed7a1-4b28-46c2-9e01-7e4358b38e76 "HTTP/1.1 200 OK"
-2026-04-29 20:22:33,186 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\80421cbcd599451a04044e3ece45f375843574c97db6199cd4e3f022f90b9311\image.webp "HTTP/1.1 200 OK"
-2026-04-29 20:22:33,213 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=16
-2026-04-29 20:22:33,214 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] saving_masks progress=92
-2026-04-29 20:22:33,419 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] segments_meta saved (16 segments)
-2026-04-29 20:22:33,419 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] done mask_count=16
-2026-04-29 20:22:33,419 INFO backend.segmentation: [UPLOAD_BG] DONE 38.534s at 2026-04-30T02:22:33.419503+00:00
-2026-04-29 20:22:33,420 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-29 20:22:38,594 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:22:38.593824+00:00
-2026-04-29 20:22:38,977 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:22:39,402 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.808s at 2026-04-30T02:22:39.402689+00:00
-2026-04-29 20:22:44,189 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:22:44.189800+00:00
-2026-04-29 20:22:44,726 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:22:45,179 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.990s at 2026-04-30T02:22:45.179303+00:00
-2026-04-29 20:22:50,087 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:22:50.087424+00:00
-2026-04-29 20:22:50,751 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-29 20:22:51,466 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.379s at 2026-04-30T02:22:51.466435+00:00
-2026-04-29 20:26:39,065 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-29 20:26:39,964 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-29 20:33:56,025 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-29 20:34:02,828 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:34:02.828129+00:00
-2026-04-29 20:34:02,830 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] preparing_image progress=12
-2026-04-29 20:34:02,900 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] segmenting_with_sam2 progress=30 estimated_seconds=51.939840000000004
-2026-04-29 20:34:04,067 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-29 20:34:04,727 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-29 20:34:05,153 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-29 20:34:05,258 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/b306737b-bf28-4f02-8963-83b74032d449 "HTTP/1.1 200 OK"
-2026-04-29 20:34:05,354 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-29 20:34:05,788 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-29 20:34:06,344 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=b306737b-bf28-4f02-8963-83b74032d449 "HTTP/1.1 200 OK"
-2026-04-29 20:34:24,624 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/edcd82066c73a2359a9133192b4091c873fb9fca768c0f377a7a519aeb9f9b3a/image.webp "HTTP/1.1 200 OK"
-2026-04-29 20:34:24,678 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🌳 Terraza / Patio / Jardín motor=Híbrido Arquitectura (Cityscapes Grande + DINO Pequeño) mask_count=20
-2026-04-29 20:34:24,684 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] saving_masks progress=92
-2026-04-29 20:34:24,781 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] segments_meta saved (20 segments)
-2026-04-29 20:34:24,782 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] done mask_count=20
-2026-04-29 20:34:24,782 INFO backend.segmentation: [UPLOAD_BG] DONE 21.955s at 2026-04-30T02:34:24.782746+00:00
-2026-04-29 20:34:24,783 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-29 20:34:27,987 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:34:27.987941+00:00
-2026-04-29 20:34:28,292 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
-2026-04-29 20:34:28,570 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.582s at 2026-04-30T02:34:28.570140+00:00
-2026-04-30 11:28:10,082 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 11:28:10,113 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-30 11:28:44,116 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T17:28:44.116002+00:00
-2026-04-30 11:28:44,117 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] preparing_image progress=12
-2026-04-30 11:28:44,411 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-30 11:28:44,411 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 11:28:47,099 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-30 11:28:47,585 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-30 11:28:48,272 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-30 11:28:48,363 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/7d7be152-f5b8-4924-8c4d-1a0b61711e8f "HTTP/1.1 200 OK"
-2026-04-30 11:28:48,476 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-30 11:28:48,934 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-30 11:28:49,386 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=7d7be152-f5b8-4924-8c4d-1a0b61711e8f "HTTP/1.1 200 OK"
-2026-04-30 11:29:08,489 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
-2026-04-30 11:29:08,588 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
-2026-04-30 11:29:08,590 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] saving_masks progress=92
-2026-04-30 11:29:08,688 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] segments_meta saved (14 segments)
-2026-04-30 11:29:08,688 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] done mask_count=18
-2026-04-30 11:29:08,689 INFO backend.segmentation: [UPLOAD_BG] DONE 24.573s at 2026-04-30T17:29:08.689489+00:00
-2026-04-30 11:29:08,689 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-30 11:34:31,212 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 11:34:31,227 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-30 11:35:20,079 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 11:35:20,093 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-30 11:35:28,226 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T17:35:28.226030+00:00
-2026-04-30 11:35:28,227 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] preparing_image progress=12
-2026-04-30 11:35:28,315 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-30 11:35:28,316 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 11:35:29,381 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-30 11:35:29,927 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-30 11:35:30,567 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-30 11:35:30,680 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/846ae43c-81a8-48af-97ee-8292d522cc64 "HTTP/1.1 200 OK"
-2026-04-30 11:35:30,784 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-30 11:35:31,388 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-30 11:35:31,964 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=846ae43c-81a8-48af-97ee-8292d522cc64 "HTTP/1.1 200 OK"
-2026-04-30 11:35:43,682 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
-2026-04-30 11:35:43,788 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
-2026-04-30 11:35:43,788 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] saving_masks progress=92
-2026-04-30 11:35:43,874 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] segments_meta saved (14 segments)
-2026-04-30 11:35:43,875 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] done mask_count=18
-2026-04-30 11:35:43,875 INFO backend.segmentation: [UPLOAD_BG] DONE 15.650s at 2026-04-30T17:35:43.875230+00:00
-2026-04-30 11:35:43,876 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-30 11:37:18,311 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:18.311528+00:00
-2026-04-30 11:37:18,787 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:37:19,025 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.714s at 2026-04-30T17:37:19.025433+00:00
-2026-04-30 11:37:22,720 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:22.720207+00:00
-2026-04-30 11:37:23,223 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:37:23,371 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.651s at 2026-04-30T17:37:23.371172+00:00
-2026-04-30 11:37:27,040 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:27.040137+00:00
-2026-04-30 11:37:27,461 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:37:27,615 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.576s at 2026-04-30T17:37:27.615284+00:00
-2026-04-30 11:37:32,588 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T17:37:32.588150+00:00
-2026-04-30 11:37:32,589 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] preparing_image progress=12
-2026-04-30 11:37:32,652 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-30 11:37:32,653 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 11:37:33,265 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-30 11:37:33,854 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-30 11:37:34,045 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-30 11:37:34,638 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-30 11:37:35,300 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-30 11:37:35,353 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/f3fac27d-4abe-4757-a29c-4cc301d3c520 "HTTP/1.1 200 OK"
-2026-04-30 11:37:35,860 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=f3fac27d-4abe-4757-a29c-4cc301d3c520 "HTTP/1.1 200 OK"
-2026-04-30 11:37:45,344 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/525c342e2500d48137e90e793b9f3884aa3deedaa44ac6a6178e85433dde68ed/image.webp "HTTP/1.1 200 OK"
-2026-04-30 11:37:45,399 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=19
-2026-04-30 11:37:45,400 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] saving_masks progress=92
-2026-04-30 11:37:45,496 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] segments_meta saved (19 segments)
-2026-04-30 11:37:45,496 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] done mask_count=19
-2026-04-30 11:37:45,497 INFO backend.segmentation: [UPLOAD_BG] DONE 12.909s at 2026-04-30T17:37:45.497768+00:00
-2026-04-30 11:37:45,497 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-30 11:37:51,411 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:51.411336+00:00
-2026-04-30 11:37:51,902 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:37:52,048 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.637s at 2026-04-30T17:37:52.048476+00:00
-2026-04-30 11:37:54,874 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:54.874358+00:00
-2026-04-30 11:37:55,381 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:37:55,525 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.652s at 2026-04-30T17:37:55.525845+00:00
-2026-04-30 11:37:59,388 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:59.388707+00:00
-2026-04-30 11:37:59,889 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.05 < 0.35, skip perspective)
-2026-04-30 11:37:59,903 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:00,058 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.670s at 2026-04-30T17:38:00.058226+00:00
-2026-04-30 11:38:04,419 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:04.419644+00:00
-2026-04-30 11:38:04,939 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:05,083 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.664s at 2026-04-30T17:38:05.083669+00:00
-2026-04-30 11:38:09,485 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:09.485185+00:00
-2026-04-30 11:38:10,004 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:10,164 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.679s at 2026-04-30T17:38:10.164696+00:00
-2026-04-30 11:38:14,863 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:14.863574+00:00
-2026-04-30 11:38:15,447 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:15,612 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.750s at 2026-04-30T17:38:15.612415+00:00
-2026-04-30 11:38:18,118 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:18.118131+00:00
-2026-04-30 11:38:18,776 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:18,995 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.879s at 2026-04-30T17:38:18.995927+00:00
-2026-04-30 11:38:22,037 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:22.037510+00:00
-2026-04-30 11:38:22,686 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:22,873 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.835s at 2026-04-30T17:38:22.873532+00:00
-2026-04-30 11:38:25,520 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:25.520184+00:00
-2026-04-30 11:38:26,145 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:26,334 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.815s at 2026-04-30T17:38:26.334641+00:00
-2026-04-30 11:38:28,140 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:28.140486+00:00
-2026-04-30 11:38:28,847 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:29,023 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.882s at 2026-04-30T17:38:29.023363+00:00
-2026-04-30 11:38:35,098 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:35.098342+00:00
-2026-04-30 11:38:35,824 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:38:36,028 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.930s at 2026-04-30T17:38:36.028300+00:00
-2026-04-30 11:41:41,140 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T17:41:41.140015+00:00
-2026-04-30 11:41:41,149 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] preparing_image progress=12
-2026-04-30 11:41:41,245 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-30 11:41:41,246 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 11:41:41,911 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-30 11:41:42,462 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-30 11:41:42,643 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-30 11:41:43,175 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/3aef8110-e818-4b0d-b6eb-ea6e1e3f6d26 "HTTP/1.1 200 OK"
-2026-04-30 11:41:43,286 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-30 11:41:43,879 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-30 11:41:44,473 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=3aef8110-e818-4b0d-b6eb-ea6e1e3f6d26 "HTTP/1.1 200 OK"
-2026-04-30 11:41:54,142 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/be028661dd9bac57589c50374ec81fba3f6d33d75c68656f138199c7ecd043d5/image.webp "HTTP/1.1 200 OK"
-2026-04-30 11:41:54,248 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=13
-2026-04-30 11:41:54,250 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] saving_masks progress=92
-2026-04-30 11:41:54,306 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] segments_meta saved (13 segments)
-2026-04-30 11:41:54,307 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] done mask_count=13
-2026-04-30 11:41:54,307 INFO backend.segmentation: [UPLOAD_BG] DONE 13.167s at 2026-04-30T17:41:54.307037+00:00
-2026-04-30 11:41:54,308 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-30 11:43:18,472 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:43:18.472363+00:00
-2026-04-30 11:43:19,016 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:43:19,160 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.688s at 2026-04-30T17:43:19.160192+00:00
-2026-04-30 11:43:30,372 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:43:30.372475+00:00
-2026-04-30 11:43:30,954 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:43:31,098 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.727s at 2026-04-30T17:43:31.098668+00:00
-2026-04-30 11:47:34,143 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:47:34.143047+00:00
-2026-04-30 11:47:34,404 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:47:34,532 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.389s at 2026-04-30T17:47:34.532555+00:00
-2026-04-30 11:47:55,089 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:47:55.089325+00:00
-2026-04-30 11:47:55,583 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 11:47:55,730 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.641s at 2026-04-30T17:47:55.730378+00:00
-2026-04-30 12:04:38,148 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 12:04:38,173 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-30 12:09:38,204 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 12:09:38,219 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-30 12:13:52,707 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T18:13:52.707043+00:00
-2026-04-30 12:13:52,707 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] preparing_image progress=12
-2026-04-30 12:13:52,799 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-30 12:13:52,799 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 12:13:53,878 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-30 12:13:54,504 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-30 12:13:55,176 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-30 12:13:55,270 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/41cb0056-465a-425e-83c0-301658311ea8 "HTTP/1.1 200 OK"
-2026-04-30 12:13:55,368 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-30 12:13:55,904 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-30 12:13:56,487 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=41cb0056-465a-425e-83c0-301658311ea8 "HTTP/1.1 200 OK"
-2026-04-30 12:14:07,019 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
-2026-04-30 12:14:07,128 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
-2026-04-30 12:14:07,129 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] saving_masks progress=92
-2026-04-30 12:14:07,214 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] segments_meta saved (14 segments)
-2026-04-30 12:14:07,214 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] done mask_count=18
-2026-04-30 12:14:07,215 INFO backend.segmentation: [UPLOAD_BG] DONE 14.509s at 2026-04-30T18:14:07.215535+00:00
-2026-04-30 12:14:07,216 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-30 12:15:26,031 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:26.031154+00:00
-2026-04-30 12:15:26,320 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 12:15:26,583 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.552s at 2026-04-30T18:15:26.583372+00:00
-2026-04-30 12:15:31,474 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:31.474416+00:00
-2026-04-30 12:15:31,999 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 12:15:32,141 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.667s at 2026-04-30T18:15:32.141076+00:00
-2026-04-30 12:15:37,533 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:37.533421+00:00
-2026-04-30 12:15:38,003 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 12:15:38,148 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.615s at 2026-04-30T18:15:38.148131+00:00
-2026-04-30 12:15:43,112 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:43.112106+00:00
-2026-04-30 12:15:43,495 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 12:15:43,639 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.528s at 2026-04-30T18:15:43.639421+00:00
-2026-04-30 12:15:48,170 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:48.170441+00:00
-2026-04-30 12:15:48,545 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 12:15:48,688 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.518s at 2026-04-30T18:15:48.688355+00:00
-2026-04-30 12:21:38,766 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T18:21:38.766212+00:00
-2026-04-30 12:21:38,766 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] preparing_image progress=12
-2026-04-30 12:21:38,838 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-30 12:21:38,838 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 12:21:39,938 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-30 12:21:41,143 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-30 12:21:41,334 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-30 12:21:41,668 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/a637527a-5267-4a6e-acc0-e57a7de5119a "HTTP/1.1 200 OK"
-2026-04-30 12:21:41,761 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-30 12:21:42,216 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-30 12:21:42,820 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=a637527a-5267-4a6e-acc0-e57a7de5119a "HTTP/1.1 200 OK"
-2026-04-30 12:21:50,974 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
-2026-04-30 12:21:51,074 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
-2026-04-30 12:21:51,074 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] saving_masks progress=92
-2026-04-30 12:21:51,145 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] segments_meta saved (14 segments)
-2026-04-30 12:21:51,146 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] done mask_count=18
-2026-04-30 12:21:51,147 INFO backend.segmentation: [UPLOAD_BG] DONE 12.381s at 2026-04-30T18:21:51.147398+00:00
-2026-04-30 12:21:51,147 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-30 12:22:28,223 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:22:28.223162+00:00
-2026-04-30 12:22:28,488 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 12:22:28,633 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.410s at 2026-04-30T18:22:28.633219+00:00
-2026-04-30 12:23:38,541 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:23:38.541894+00:00
-2026-04-30 12:23:39,059 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.28 < 0.35, skip perspective)
-2026-04-30 12:23:39,078 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 12:23:39,224 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.682s at 2026-04-30T18:23:39.224901+00:00
-2026-04-30 12:23:47,739 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:23:47.739936+00:00
-2026-04-30 12:23:48,234 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.29 < 0.35, skip perspective)
-2026-04-30 12:23:48,249 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 12:23:48,393 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.654s at 2026-04-30T18:23:48.393543+00:00
-2026-04-30 12:35:04,237 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T18:35:04.237929+00:00
-2026-04-30 12:35:04,237 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] preparing_image progress=12
-2026-04-30 12:35:04,252 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] segmenting_with_sam2 progress=30 estimated_seconds=28.89164
-2026-04-30 12:35:04,252 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 12:35:04,919 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-30 12:35:05,542 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-30 12:35:05,767 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-30 12:35:06,228 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/e02fbff5-268c-40cf-bacf-e1c35bcf4346 "HTTP/1.1 200 OK"
-2026-04-30 12:35:06,341 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-30 12:35:06,892 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-30 12:35:07,458 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=e02fbff5-268c-40cf-bacf-e1c35bcf4346 "HTTP/1.1 200 OK"
-2026-04-30 12:35:29,382 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/75fa9ee4d8e3aa2f3926aa662e35acdfbaa3f94163e61a68527474a5a60675c3/image.webp "HTTP/1.1 200 OK"
-2026-04-30 12:35:29,438 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🏙️ Fachada / Exterior motor=Híbrido Arquitectura (Cityscapes Grande + DINO Pequeño) mask_count=12
-2026-04-30 12:35:29,439 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] saving_masks progress=92
-2026-04-30 12:35:29,463 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] segments_meta saved (11 segments)
-2026-04-30 12:35:29,463 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] done mask_count=12
-2026-04-30 12:35:29,463 INFO backend.segmentation: [UPLOAD_BG] DONE 25.226s at 2026-04-30T18:35:29.463948+00:00
-2026-04-30 12:35:29,464 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-30 15:39:34,392 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 15:39:34,422 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-04-30 15:40:07,782 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69f3cc370fe929ed6cff073d"}, "remainingTimeMS": 30}
-2026-04-30 15:40:18,856 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T21:40:18.856487+00:00
-2026-04-30 15:40:18,856 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] preparing_image progress=12
-2026-04-30 15:40:19,134 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-04-30 15:40:19,134 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-04-30 15:40:21,980 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-04-30 15:40:22,624 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-04-30 15:40:23,391 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-04-30 15:40:23,497 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/314c6a15-7cd5-4d38-88c5-58a08df1fad6 "HTTP/1.1 200 OK"
-2026-04-30 15:40:23,607 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-04-30 15:40:24,238 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-04-30 15:40:24,860 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=314c6a15-7cd5-4d38-88c5-58a08df1fad6 "HTTP/1.1 200 OK"
-2026-04-30 15:40:33,216 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
-2026-04-30 15:40:33,324 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
-2026-04-30 15:40:33,325 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] saving_masks progress=92
-2026-04-30 15:40:33,428 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] segments_meta saved (14 segments)
-2026-04-30 15:40:33,428 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] done mask_count=18
-2026-04-30 15:40:33,429 INFO backend.segmentation: [UPLOAD_BG] DONE 14.573s at 2026-04-30T21:40:33.429138+00:00
-2026-04-30 15:40:33,429 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-04-30 15:40:38,479 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T21:40:38.479968+00:00
-2026-04-30 15:40:38,976 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 15:40:39,252 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.773s at 2026-04-30T21:40:39.252883+00:00
-2026-04-30 16:21:48,502 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T22:21:48.502651+00:00
-2026-04-30 16:21:49,012 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-04-30 16:21:49,158 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.656s at 2026-04-30T22:21:49.158351+00:00
-2026-05-06 18:02:51,635 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-06 18:02:51,663 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 18:03:05,661 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fbd6b9d024dc8e891e4555"}, "remainingTimeMS": 30}
-2026-05-06 18:03:54,118 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:03:54.118398+00:00
-2026-05-06 18:03:54,119 INFO backend.segmentation: [JOB e0df636678f746dc9b2d4a29256ab769] preparing_image progress=12
-2026-05-06 18:03:54,441 INFO backend.segmentation: [JOB e0df636678f746dc9b2d4a29256ab769] segmenting_with_sam2 progress=30 estimated_seconds=63.05024
-2026-05-06 18:03:54,441 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:03:59,802 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:04:02,031 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:04:02,051 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:04:02,051 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7860
-2026-05-06 18:04:02,487 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:04:04,382 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:04:04,396 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/07a1a8b9-03be-4f34-9425-2b264489eb61 "HTTP/1.1 200 OK"
-2026-05-06 18:04:06,807 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:04:06,810 ERROR backend.segmentation: [JOB e0df636678f746dc9b2d4a29256ab769] failed: cannot access local variable 'exc_gpu' where it is not associated with a value
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 89, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 36, in _call_gradio_sync
- _overlay_file, combined_json_str = client.predict(
- ^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 497, in predict
- return self.submit(
- ^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 543, in submit
- inferred_fn_index = self._infer_fn_index(api_name, fn_index)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 881, in _infer_fn_index
- raise ValueError(error_message)
-ValueError: Cannot find a function with `api_name`: /segment.
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 137, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- f" GPU ({GRADIO_SPACE_URL}): {exc_gpu}\n"
- ^^^^^^^
-UnboundLocalError: cannot access local variable 'exc_gpu' where it is not associated with a value
-2026-05-06 18:04:06,834 INFO backend.segmentation: [UPLOAD_BG] DONE 12.716s at 2026-05-07T00:04:06.834047+00:00
-2026-05-06 18:04:06,838 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:04:06,884 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:04:09,275 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/04b260c2-1554-4cba-a89f-13976ed4ac4d "HTTP/1.1 200 OK"
-2026-05-06 18:09:42,042 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-06 18:09:42,064 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 18:09:42,071 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:09:42.071378+00:00
-2026-05-06 18:09:42,076 INFO backend.segmentation: [JOB 45db3dde20444c6f97e1653fd7df1d17] preparing_image progress=12
-2026-05-06 18:09:42,120 INFO backend.segmentation: [JOB 45db3dde20444c6f97e1653fd7df1d17] segmenting_with_sam2 progress=30 estimated_seconds=63.05024
-2026-05-06 18:09:42,121 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:09:44,483 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:09:46,855 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:09:46,857 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:09:46,861 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7860
-2026-05-06 18:09:47,293 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:09:49,183 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/1780c9d0-ac88-47b0-b6c1-3cf40997667d "HTTP/1.1 200 OK"
-2026-05-06 18:09:49,199 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:09:51,480 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:09:51,485 ERROR backend.segmentation: [JOB 45db3dde20444c6f97e1653fd7df1d17] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
- CPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 36, in _call_gradio_sync
- _overlay_file, combined_json_str = client.predict(
- ^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 497, in predict
- return self.submit(
- ^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 543, in submit
- inferred_fn_index = self._infer_fn_index(api_name, fn_index)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 881, in _infer_fn_index
- raise ValueError(error_message)
-ValueError: Cannot find a function with `api_name`: /segment.
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 137, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
- CPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
-2026-05-06 18:09:51,487 INFO backend.segmentation: [UPLOAD_BG] DONE 9.415s at 2026-05-07T00:09:51.487122+00:00
-2026-05-06 18:09:51,487 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:09:51,545 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:09:53,753 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/36233c91-f2f7-4ec1-9a12-3d21c85acebf "HTTP/1.1 200 OK"
-2026-05-06 18:13:22,286 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:13:22.286531+00:00
-2026-05-06 18:13:22,286 INFO backend.segmentation: [JOB 1d0df1096d5f465b92fae7922f6f7018] preparing_image progress=12
-2026-05-06 18:13:22,361 INFO backend.segmentation: [JOB 1d0df1096d5f465b92fae7922f6f7018] segmenting_with_sam2 progress=30 estimated_seconds=63.05024
-2026-05-06 18:13:22,362 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:13:24,786 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:13:27,139 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:13:27,145 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:13:27,146 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7860
-2026-05-06 18:13:27,264 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:13:29,620 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/903b6662-21a9-407f-849d-a09f627bf22b "HTTP/1.1 200 OK"
-2026-05-06 18:13:29,696 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:13:32,103 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:13:32,109 ERROR backend.segmentation: [JOB 1d0df1096d5f465b92fae7922f6f7018] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
- CPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 36, in _call_gradio_sync
- _overlay_file, combined_json_str = client.predict(
- ^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 497, in predict
- return self.submit(
- ^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 543, in submit
- inferred_fn_index = self._infer_fn_index(api_name, fn_index)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 881, in _infer_fn_index
- raise ValueError(error_message)
-ValueError: Cannot find a function with `api_name`: /segment.
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 137, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
- CPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
-2026-05-06 18:13:32,119 INFO backend.segmentation: [UPLOAD_BG] DONE 9.833s at 2026-05-07T00:13:32.119224+00:00
-2026-05-06 18:13:32,120 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:13:32,165 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:13:34,556 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e4f38b15-d04a-41ee-bb91-06226b8fcbae "HTTP/1.1 200 OK"
-2026-05-06 18:14:12,194 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-06 18:14:12,207 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 18:14:24,360 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:14:24.360597+00:00
-2026-05-06 18:14:24,360 INFO backend.segmentation: [JOB d0714cc4813c4ff5b969676107410712] preparing_image progress=12
-2026-05-06 18:14:24,496 INFO backend.segmentation: [JOB d0714cc4813c4ff5b969676107410712] segmenting_with_sam2 progress=30 estimated_seconds=63.05024
-2026-05-06 18:14:24,496 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:14:27,292 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:14:29,710 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:14:29,737 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:14:29,738 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7860
-2026-05-06 18:14:30,337 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:14:32,244 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/b1361a06-2ac6-4b8d-8a1c-79a0b653d2d4 "HTTP/1.1 200 OK"
-2026-05-06 18:14:32,247 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:14:34,724 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:14:34,728 ERROR backend.segmentation: [JOB d0714cc4813c4ff5b969676107410712] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
- CPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 36, in _call_gradio_sync
- _overlay_file, combined_json_str = client.predict(
- ^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 497, in predict
- return self.submit(
- ^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 543, in submit
- inferred_fn_index = self._infer_fn_index(api_name, fn_index)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 881, in _infer_fn_index
- raise ValueError(error_message)
-ValueError: Cannot find a function with `api_name`: /segment.
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 137, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
- CPU (http://localhost:7860): Cannot find a function with `api_name`: /segment.
-2026-05-06 18:14:34,732 INFO backend.segmentation: [UPLOAD_BG] DONE 10.372s at 2026-05-07T00:14:34.731556+00:00
-2026-05-06 18:14:34,732 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:14:34,784 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:14:37,121 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e7673631-cbf6-43a7-8391-415fae5fc0e9 "HTTP/1.1 200 OK"
-2026-05-06 18:16:40,330 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-06 18:16:40,344 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 18:16:46,189 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:16:46.189444+00:00
-2026-05-06 18:16:46,189 INFO backend.segmentation: [JOB a0e5eea5ea454870abc22c495d503be4] preparing_image progress=12
-2026-05-06 18:16:46,293 INFO backend.segmentation: [JOB a0e5eea5ea454870abc22c495d503be4] segmenting_with_sam2 progress=30 estimated_seconds=63.05024
-2026-05-06 18:16:46,293 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:16:49,078 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:16:51,479 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:16:51,497 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:16:51,498 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 18:16:52,101 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:16:54,019 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/6b53345b-dde9-4c3f-9adc-6c494ed360ef "HTTP/1.1 200 OK"
-2026-05-06 18:16:54,024 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 18:16:56,487 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:16:56,549 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:16:58,924 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/74fea2e0-6f0d-4dda-a138-a42ba84fc0aa "HTTP/1.1 200 OK"
-2026-05-06 18:16:58,960 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 18:17:01,339 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 18:17:03,913 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=74fea2e0-6f0d-4dda-a138-a42ba84fc0aa "HTTP/1.1 200 OK"
-2026-05-06 18:19:23,132 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\bdc55057e453f1e4793eccb7f3297d66322074e960cb173c3fcf63268faa1561\image.webp "HTTP/1.1 200 OK"
-2026-05-06 18:19:23,155 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🏙️ Fachada / Exterior motor=SAM Auto (Exteriores - Sin Prompts) mask_count=95
-2026-05-06 18:19:23,156 INFO backend.segmentation: [JOB a0e5eea5ea454870abc22c495d503be4] saving_masks progress=92
-2026-05-06 18:19:23,605 INFO backend.segmentation: [JOB a0e5eea5ea454870abc22c495d503be4] segments_meta saved (93 segments)
-2026-05-06 18:19:23,607 INFO backend.segmentation: [JOB a0e5eea5ea454870abc22c495d503be4] done mask_count=95
-2026-05-06 18:19:23,607 INFO backend.segmentation: [UPLOAD_BG] DONE 157.419s at 2026-05-07T00:19:23.607772+00:00
-2026-05-06 18:19:23,607 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:19:34,201 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:19:34.200405+00:00
-2026-05-06 18:19:34,746 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:19:35,040 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.840s at 2026-05-07T00:19:35.040623+00:00
-2026-05-06 18:19:42,196 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:19:42.196103+00:00
-2026-05-06 18:19:42,742 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:19:42,974 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.779s at 2026-05-07T00:19:42.974981+00:00
-2026-05-06 18:19:47,421 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:19:47.421826+00:00
-2026-05-06 18:19:47,977 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:19:48,182 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.759s at 2026-05-07T00:19:48.182179+00:00
-2026-05-06 18:19:54,412 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:19:54.412542+00:00
-2026-05-06 18:19:54,866 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:19:55,074 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.662s at 2026-05-07T00:19:55.074817+00:00
-2026-05-06 18:19:57,905 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:19:57.905487+00:00
-2026-05-06 18:19:58,384 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:19:58,598 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.692s at 2026-05-07T00:19:58.598145+00:00
-2026-05-06 18:19:59,918 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:19:59.918562+00:00
-2026-05-06 18:20:00,391 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:00,605 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.687s at 2026-05-07T00:20:00.605635+00:00
-2026-05-06 18:20:01,887 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:01.887221+00:00
-2026-05-06 18:20:02,339 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:02,550 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.663s at 2026-05-07T00:20:02.550706+00:00
-2026-05-06 18:20:04,982 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:04.982372+00:00
-2026-05-06 18:20:05,541 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:05,754 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.772s at 2026-05-07T00:20:05.753433+00:00
-2026-05-06 18:20:09,130 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:09.130132+00:00
-2026-05-06 18:20:09,706 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:09,918 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.788s at 2026-05-07T00:20:09.918209+00:00
-2026-05-06 18:20:13,606 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:13.606190+00:00
-2026-05-06 18:20:14,202 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:14,419 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.813s at 2026-05-07T00:20:14.419193+00:00
-2026-05-06 18:20:24,188 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:24.188464+00:00
-2026-05-06 18:20:24,558 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:24,768 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.580s at 2026-05-07T00:20:24.768332+00:00
-2026-05-06 18:20:31,993 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:31.993128+00:00
-2026-05-06 18:20:32,461 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:32,660 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.667s at 2026-05-07T00:20:32.660620+00:00
-2026-05-06 18:20:39,799 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:39.799176+00:00
-2026-05-06 18:20:40,213 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:40,415 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.616s at 2026-05-07T00:20:40.415329+00:00
-2026-05-06 18:20:48,557 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:48.557775+00:00
-2026-05-06 18:20:48,957 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:49,152 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.594s at 2026-05-07T00:20:49.152442+00:00
-2026-05-06 18:20:51,499 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:51.499668+00:00
-2026-05-06 18:20:51,887 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:52,080 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.581s at 2026-05-07T00:20:52.080875+00:00
-2026-05-06 18:20:58,550 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:20:58.550802+00:00
-2026-05-06 18:20:58,974 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:20:59,172 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.621s at 2026-05-07T00:20:59.172097+00:00
-2026-05-06 18:21:05,475 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:21:05.475735+00:00
-2026-05-06 18:21:05,968 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:21:06,170 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.695s at 2026-05-07T00:21:06.170299+00:00
-2026-05-06 18:21:58,411 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:21:58.411200+00:00
-2026-05-06 18:21:58,922 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:21:59,122 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.711s at 2026-05-07T00:21:59.122602+00:00
-2026-05-06 18:22:03,353 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:22:03.353237+00:00
-2026-05-06 18:22:03,666 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:22:03,899 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.546s at 2026-05-07T00:22:03.899330+00:00
-2026-05-06 18:22:18,857 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:22:18.857782+00:00
-2026-05-06 18:22:19,152 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:22:19,352 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.495s at 2026-05-07T00:22:19.351744+00:00
-2026-05-06 18:22:33,242 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:22:33.241502+00:00
-2026-05-06 18:22:33,608 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:22:33,808 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.566s at 2026-05-07T00:22:33.808058+00:00
-2026-05-06 18:22:46,303 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:22:46.303027+00:00
-2026-05-06 18:22:46,613 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:22:46,820 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.517s at 2026-05-07T00:22:46.820104+00:00
-2026-05-06 18:22:53,994 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:22:53.994710+00:00
-2026-05-06 18:22:54,335 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:22:54,531 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.538s at 2026-05-07T00:22:54.531877+00:00
-2026-05-06 18:23:03,058 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:23:03.058568+00:00
-2026-05-06 18:23:03,713 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:23:03,917 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.859s at 2026-05-07T00:23:03.917765+00:00
-2026-05-06 18:23:13,406 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:23:13.406391+00:00
-2026-05-06 18:23:13,942 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.00 < 0.35, skip perspective)
-2026-05-06 18:23:13,967 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:23:14,176 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.771s at 2026-05-07T00:23:14.176983+00:00
-2026-05-06 18:23:56,519 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:23:56.519124+00:00
-2026-05-06 18:23:57,096 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:23:57,280 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.761s at 2026-05-07T00:23:57.280365+00:00
-2026-05-06 18:30:22,767 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-06 18:30:22,786 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 18:30:23,875 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-06 18:30:23,890 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 18:30:40,305 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-06 18:30:40,318 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 18:30:47,397 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:30:47.397798+00:00
-2026-05-06 18:30:47,398 INFO backend.segmentation: [JOB 37f6fc15168b48aea5bf3d353e1cd8bc] preparing_image progress=12
-2026-05-06 18:30:47,494 INFO backend.segmentation: [JOB 37f6fc15168b48aea5bf3d353e1cd8bc] segmenting_with_sam2 progress=30 estimated_seconds=63.05024
-2026-05-06 18:30:47,495 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:30:50,214 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:30:52,639 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:30:52,643 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:30:52,644 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 18:30:53,251 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:30:55,145 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 18:30:55,156 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/ecb9300c-1e9f-4a3b-9c4a-3263e97e0a30 "HTTP/1.1 200 OK"
-2026-05-06 18:30:57,506 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:30:57,568 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:30:59,968 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/b5d0cc5e-3739-47c1-96d5-e2849a4fe991 "HTTP/1.1 200 OK"
-2026-05-06 18:30:59,972 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 18:31:02,313 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 18:31:04,749 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=b5d0cc5e-3739-47c1-96d5-e2849a4fe991 "HTTP/1.1 200 OK"
-2026-05-06 18:33:25,005 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\bdc55057e453f1e4793eccb7f3297d66322074e960cb173c3fcf63268faa1561\image.webp "HTTP/1.1 200 OK"
-2026-05-06 18:33:25,027 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🏙️ Fachada / Exterior motor=SAM Auto (Exteriores - Sin Prompts) mask_count=95
-2026-05-06 18:33:25,028 INFO backend.segmentation: [JOB 37f6fc15168b48aea5bf3d353e1cd8bc] saving_masks progress=92
-2026-05-06 18:33:25,352 INFO backend.segmentation: [JOB 37f6fc15168b48aea5bf3d353e1cd8bc] segments_meta saved (93 segments)
-2026-05-06 18:33:25,353 INFO backend.segmentation: [JOB 37f6fc15168b48aea5bf3d353e1cd8bc] done mask_count=95
-2026-05-06 18:33:25,353 INFO backend.segmentation: [UPLOAD_BG] DONE 157.955s at 2026-05-07T00:33:25.353379+00:00
-2026-05-06 18:33:25,354 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:33:32,815 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:33:32.815130+00:00
-2026-05-06 18:33:33,172 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:33:33,554 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.739s at 2026-05-07T00:33:33.554031+00:00
-2026-05-06 18:33:36,147 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:33:36.147891+00:00
-2026-05-06 18:33:36,589 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.33)
-2026-05-06 18:33:36,616 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:33:36,847 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.700s at 2026-05-07T00:33:36.847452+00:00
-2026-05-06 18:33:39,658 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:33:39.658618+00:00
-2026-05-06 18:33:40,173 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.33)
-2026-05-06 18:33:40,198 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:33:40,445 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.787s at 2026-05-07T00:33:40.445326+00:00
-2026-05-06 18:33:42,787 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:33:42.787102+00:00
-2026-05-06 18:33:43,295 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:33:43,530 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.744s at 2026-05-07T00:33:43.530960+00:00
-2026-05-06 18:33:44,949 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:33:44.949548+00:00
-2026-05-06 18:33:45,490 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:33:45,716 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.768s at 2026-05-07T00:33:45.716664+00:00
-2026-05-06 18:33:53,000 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:33:53.000130+00:00
-2026-05-06 18:33:53,538 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:33:53,781 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.781s at 2026-05-07T00:33:53.781571+00:00
-2026-05-06 18:34:12,078 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:34:12.078767+00:00
-2026-05-06 18:34:12,759 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:34:12,996 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.918s at 2026-05-07T00:34:12.996206+00:00
-2026-05-06 18:34:25,880 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:34:25.880027+00:00
-2026-05-06 18:34:26,401 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:34:26,649 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.770s at 2026-05-07T00:34:26.649818+00:00
-2026-05-06 18:34:33,573 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:34:33.572267+00:00
-2026-05-06 18:34:33,888 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:34:34,124 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.551s at 2026-05-07T00:34:34.124108+00:00
-2026-05-06 18:34:38,104 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:34:38.104579+00:00
-2026-05-06 18:34:38,547 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:34:38,781 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.677s at 2026-05-07T00:34:38.781767+00:00
-2026-05-06 18:34:43,958 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:34:43.958224+00:00
-2026-05-06 18:34:44,396 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.33)
-2026-05-06 18:34:44,422 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:34:44,657 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.700s at 2026-05-07T00:34:44.657499+00:00
-2026-05-06 18:34:50,537 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:34:50.537840+00:00
-2026-05-06 18:34:50,991 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.50, h_ratio=1.82)
-2026-05-06 18:34:51,019 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:34:51,263 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.725s at 2026-05-07T00:34:51.263124+00:00
-2026-05-06 18:34:56,797 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:34:56.797730+00:00
-2026-05-06 18:34:57,208 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:34:57,462 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.666s at 2026-05-07T00:34:57.462972+00:00
-2026-05-06 18:35:00,689 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:35:00.689108+00:00
-2026-05-06 18:35:01,074 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:35:01,329 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.641s at 2026-05-07T00:35:01.329788+00:00
-2026-05-06 18:35:02,869 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:35:02.869035+00:00
-2026-05-06 18:35:03,292 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.45)
-2026-05-06 18:35:03,313 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:35:03,548 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.679s at 2026-05-07T00:35:03.548094+00:00
-2026-05-06 18:35:09,675 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:35:09.675245+00:00
-2026-05-06 18:35:10,176 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.21, h_ratio=1.01)
-2026-05-06 18:35:10,210 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:35:10,449 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.775s at 2026-05-07T00:35:10.449920+00:00
-2026-05-06 18:35:57,783 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:35:57.783409+00:00
-2026-05-06 18:35:58,342 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.33)
-2026-05-06 18:35:58,368 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:35:58,597 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.814s at 2026-05-07T00:35:58.597593+00:00
-2026-05-06 18:36:05,048 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:36:05.048300+00:00
-2026-05-06 18:36:05,424 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.33)
-2026-05-06 18:36:05,446 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:36:05,683 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.635s at 2026-05-07T00:36:05.683990+00:00
-2026-05-06 18:36:09,348 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:36:09.348934+00:00
-2026-05-06 18:36:09,689 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:36:09,939 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.591s at 2026-05-07T00:36:09.939262+00:00
-2026-05-06 18:36:11,515 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:36:11.515772+00:00
-2026-05-06 18:36:11,864 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:36:12,115 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.600s at 2026-05-07T00:36:12.115522+00:00
-2026-05-06 18:36:14,119 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:36:14.119433+00:00
-2026-05-06 18:36:14,467 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:36:14,703 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.583s at 2026-05-07T00:36:14.703339+00:00
-2026-05-06 18:36:17,955 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:36:17.955143+00:00
-2026-05-06 18:36:18,323 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.50, h_ratio=1.82)
-2026-05-06 18:36:18,346 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:36:18,587 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.632s at 2026-05-07T00:36:18.587038+00:00
-2026-05-06 18:36:29,722 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:36:29.722755+00:00
-2026-05-06 18:36:30,041 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.21, h_ratio=1.01)
-2026-05-06 18:36:30,075 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:36:30,316 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.595s at 2026-05-07T00:36:30.316931+00:00
-2026-05-06 18:36:55,258 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:36:55.258246+00:00
-2026-05-06 18:36:55,839 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.21, h_ratio=1.01)
-2026-05-06 18:36:55,875 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:36:56,125 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.867s at 2026-05-07T00:36:56.124977+00:00
-2026-05-06 18:36:59,138 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:36:59.138564+00:00
-2026-05-06 18:36:59,725 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.45)
-2026-05-06 18:36:59,750 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-06 18:36:59,984 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.846s at 2026-05-07T00:36:59.984763+00:00
-2026-05-06 18:37:16,745 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:37:16.745961+00:00
-2026-05-06 18:37:16,745 INFO backend.segmentation: [JOB 884dbcda1cef4f96803a35b3a89b9c60] preparing_image progress=12
-2026-05-06 18:37:16,797 INFO backend.segmentation: [JOB 884dbcda1cef4f96803a35b3a89b9c60] segmenting_with_sam2 progress=30 estimated_seconds=94.01599999999999
-2026-05-06 18:37:16,798 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:37:19,202 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:37:21,617 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:37:21,620 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:37:21,623 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 18:37:21,755 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:37:24,077 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/09adaa1b-fd4b-4053-96e7-e3e0b7cb26b3 "HTTP/1.1 200 OK"
-2026-05-06 18:37:24,081 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 18:37:26,501 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:37:26,560 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:37:28,941 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/450ca127-bb6f-4e37-b304-d51b440a9dbd "HTTP/1.1 200 OK"
-2026-05-06 18:37:28,947 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 18:37:31,443 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 18:37:33,986 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=450ca127-bb6f-4e37-b304-d51b440a9dbd "HTTP/1.1 200 OK"
-2026-05-06 18:39:54,826 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\8fee556ace9ab88dababff8e3183ddda34f5b57dd22cd0c9c4270241d97fe1a7\image.webp "HTTP/1.1 200 OK"
-2026-05-06 18:39:54,847 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🏙️ Fachada / Exterior motor=SAM Auto (Exteriores - Sin Prompts) mask_count=91
-2026-05-06 18:39:54,847 INFO backend.segmentation: [JOB 884dbcda1cef4f96803a35b3a89b9c60] saving_masks progress=92
-2026-05-06 18:39:55,291 INFO backend.segmentation: [JOB 884dbcda1cef4f96803a35b3a89b9c60] segments_meta saved (90 segments)
-2026-05-06 18:39:55,291 INFO backend.segmentation: [JOB 884dbcda1cef4f96803a35b3a89b9c60] done mask_count=91
-2026-05-06 18:39:55,292 INFO backend.segmentation: [UPLOAD_BG] DONE 158.546s at 2026-05-07T00:39:55.291225+00:00
-2026-05-06 18:39:55,292 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:40:28,080 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:40:28.080549+00:00
-2026-05-06 18:40:28,641 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:40:29,060 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.980s at 2026-05-07T00:40:29.060020+00:00
-2026-05-06 18:40:37,726 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:40:37.726439+00:00
-2026-05-06 18:40:38,269 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:40:38,656 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.930s at 2026-05-07T00:40:38.656587+00:00
-2026-05-06 18:40:41,361 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:40:41.361471+00:00
-2026-05-06 18:40:41,870 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:40:42,256 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.895s at 2026-05-07T00:40:42.255570+00:00
-2026-05-06 18:40:50,492 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:40:50.492837+00:00
-2026-05-06 18:40:51,018 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:40:51,365 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.872s at 2026-05-07T00:40:51.364239+00:00
-2026-05-06 18:40:53,275 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:40:53.275769+00:00
-2026-05-06 18:40:53,826 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:40:54,179 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.905s at 2026-05-07T00:40:54.179973+00:00
-2026-05-06 18:41:02,123 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:41:02.123703+00:00
-2026-05-06 18:41:02,497 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:41:02,880 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.756s at 2026-05-07T00:41:02.880196+00:00
-2026-05-06 18:41:13,602 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:41:13.602484+00:00
-2026-05-06 18:41:14,055 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:41:14,428 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.827s at 2026-05-07T00:41:14.428892+00:00
-2026-05-06 18:41:19,676 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:41:19.676717+00:00
-2026-05-06 18:41:20,113 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:41:20,484 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.808s at 2026-05-07T00:41:20.484587+00:00
-2026-05-06 18:41:28,383 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:41:28.383560+00:00
-2026-05-06 18:41:28,729 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-06 18:41:29,136 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.752s at 2026-05-07T00:41:29.136269+00:00
-2026-05-06 18:42:20,651 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:42:20.651898+00:00
-2026-05-06 18:42:20,652 INFO backend.segmentation: [JOB f7c2c35798df4443b6954b52ae0e50c7] preparing_image progress=12
-2026-05-06 18:42:20,720 INFO backend.segmentation: [JOB f7c2c35798df4443b6954b52ae0e50c7] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 18:42:20,722 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:42:23,169 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:42:25,513 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:42:25,518 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:42:25,523 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 18:42:25,648 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:42:27,979 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 18:42:28,011 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/eff4d6f4-a526-4e3c-885b-21716e034b5b "HTTP/1.1 200 OK"
-2026-05-06 18:42:30,320 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:42:30,384 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:42:32,775 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/bb6c3136-6f1c-4623-bf35-86865beea318 "HTTP/1.1 200 OK"
-2026-05-06 18:42:32,825 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 18:42:35,212 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 18:42:37,701 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=bb6c3136-6f1c-4623-bf35-86865beea318 "HTTP/1.1 200 OK"
-2026-05-06 18:43:12,742 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\bd5cc89cdf220f59a58e54c17de42ccd2fe478787be6fafda37778eaf1d6f8c0\image.webp "HTTP/1.1 200 OK"
-2026-05-06 18:43:12,768 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛋️ Interiores (Sala / Cuartos) motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=15
-2026-05-06 18:43:12,768 INFO backend.segmentation: [JOB f7c2c35798df4443b6954b52ae0e50c7] saving_masks progress=92
-2026-05-06 18:43:12,827 INFO backend.segmentation: [JOB f7c2c35798df4443b6954b52ae0e50c7] segments_meta saved (9 segments)
-2026-05-06 18:43:12,828 INFO backend.segmentation: [JOB f7c2c35798df4443b6954b52ae0e50c7] done mask_count=15
-2026-05-06 18:43:12,828 INFO backend.segmentation: [UPLOAD_BG] DONE 52.177s at 2026-05-07T00:43:12.828557+00:00
-2026-05-06 18:43:12,829 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:43:24,334 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:43:24.334962+00:00
-2026-05-06 18:43:24,892 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.41.58.jpg
-2026-05-06 18:43:25,127 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.792s at 2026-05-07T00:43:25.127393+00:00
-2026-05-06 18:45:52,139 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:45:52.139300+00:00
-2026-05-06 18:45:52,631 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.00 < 0.35, skip perspective)
-2026-05-06 18:45:52,652 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.41.58.jpg
-2026-05-06 18:45:52,934 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.795s at 2026-05-07T00:45:52.934786+00:00
-2026-05-06 18:48:05,742 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:48:05.742257+00:00
-2026-05-06 18:48:05,742 INFO backend.segmentation: [JOB 6b7b7b29836840008fe1b69188169fdd] preparing_image progress=12
-2026-05-06 18:48:05,805 INFO backend.segmentation: [JOB 6b7b7b29836840008fe1b69188169fdd] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 18:48:05,806 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 18:48:08,161 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 18:48:10,524 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:48:10,528 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:48:10,529 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 18:48:10,657 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:48:12,980 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/7be43e9c-5bea-422d-bb06-60720d9880bf "HTTP/1.1 200 OK"
-2026-05-06 18:48:12,981 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 18:48:15,268 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:48:15,340 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:48:17,721 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/562af56b-498c-4c62-9020-b784b3cd3643 "HTTP/1.1 200 OK"
-2026-05-06 18:48:17,756 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 18:48:20,089 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 18:48:22,469 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=562af56b-498c-4c62-9020-b784b3cd3643 "HTTP/1.1 200 OK"
-2026-05-06 18:50:33,287 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\307e144a6a358b2b31461825d5a83d98d89d0a4426bbff036b53a58abbce6a7f\image.webp "HTTP/1.1 200 OK"
-2026-05-06 18:50:33,299 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=75
-2026-05-06 18:50:33,301 INFO backend.segmentation: [JOB 6b7b7b29836840008fe1b69188169fdd] saving_masks progress=92
-2026-05-06 18:50:33,531 INFO backend.segmentation: [JOB 6b7b7b29836840008fe1b69188169fdd] segments_meta saved (65 segments)
-2026-05-06 18:50:33,534 INFO backend.segmentation: [JOB 6b7b7b29836840008fe1b69188169fdd] done mask_count=75
-2026-05-06 18:50:33,534 INFO backend.segmentation: [UPLOAD_BG] DONE 147.793s at 2026-05-07T00:50:33.534228+00:00
-2026-05-06 18:50:33,535 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 18:50:43,317 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:50:43.317662+00:00
-2026-05-06 18:50:43,744 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.18, h_ratio=287.00)
-2026-05-06 18:50:43,761 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:50:43,971 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.654s at 2026-05-07T00:50:43.971226+00:00
-2026-05-06 18:50:48,879 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:50:48.879893+00:00
-2026-05-06 18:50:49,294 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:50:49,529 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.649s at 2026-05-07T00:50:49.529626+00:00
-2026-05-06 18:50:57,857 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:50:57.857319+00:00
-2026-05-06 18:50:58,384 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.03, h_ratio=1.27)
-2026-05-06 18:50:58,407 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:50:58,621 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.764s at 2026-05-07T00:50:58.621573+00:00
-2026-05-06 18:51:06,144 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:51:06.144106+00:00
-2026-05-06 18:51:06,633 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.25, h_ratio=1.00)
-2026-05-06 18:51:06,651 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:51:06,863 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.719s at 2026-05-07T00:51:06.863196+00:00
-2026-05-06 18:51:15,682 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:51:15.682186+00:00
-2026-05-06 18:51:16,277 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.00 < 0.35, skip perspective)
-2026-05-06 18:51:16,298 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:51:16,515 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.833s at 2026-05-07T00:51:16.515186+00:00
-2026-05-06 18:51:19,654 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:51:19.654232+00:00
-2026-05-06 18:51:19,971 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.00 < 0.35, skip perspective)
-2026-05-06 18:51:19,990 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:51:20,208 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.555s at 2026-05-07T00:51:20.208584+00:00
-2026-05-06 18:52:00,456 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:52:00.456384+00:00
-2026-05-06 18:52:00,996 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.03, h_ratio=292.55)
-2026-05-06 18:52:01,022 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:52:01,244 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.788s at 2026-05-07T00:52:01.244355+00:00
-2026-05-06 18:52:26,614 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:52:26.614595+00:00
-2026-05-06 18:52:27,072 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.00 < 0.35, skip perspective)
-2026-05-06 18:52:27,091 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:52:27,309 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.695s at 2026-05-07T00:52:27.309474+00:00
-2026-05-06 18:52:31,418 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:52:31.418579+00:00
-2026-05-06 18:52:31,917 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.00 < 0.35, skip perspective)
-2026-05-06 18:52:31,937 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:52:32,167 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.748s at 2026-05-07T00:52:32.167442+00:00
-2026-05-06 18:52:36,908 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:52:36.908697+00:00
-2026-05-06 18:52:37,340 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.00 < 0.35, skip perspective)
-2026-05-06 18:52:37,360 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:52:37,571 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.663s at 2026-05-07T00:52:37.571758+00:00
-2026-05-06 18:52:42,394 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:52:42.394838+00:00
-2026-05-06 18:52:42,800 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:52:43,012 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.618s at 2026-05-07T00:52:43.012733+00:00
-2026-05-06 18:53:17,599 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:53:17.599012+00:00
-2026-05-06 18:53:18,767 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:53:19,517 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.918s at 2026-05-07T00:53:19.517003+00:00
-2026-05-06 18:53:20,941 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:53:20.941029+00:00
-2026-05-06 18:53:22,268 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.18, h_ratio=287.00)
-2026-05-06 18:53:22,309 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:53:22,958 INFO backend.segmentation: [APPLY_TEXTURE] DONE 2.017s at 2026-05-07T00:53:22.958657+00:00
-2026-05-06 18:53:26,815 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:53:26.815426+00:00
-2026-05-06 18:53:27,767 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.18, h_ratio=287.00)
-2026-05-06 18:53:27,822 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:53:28,496 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.681s at 2026-05-07T00:53:28.496136+00:00
-2026-05-06 18:53:29,211 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:53:29.211502+00:00
-2026-05-06 18:53:30,092 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:53:30,714 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.503s at 2026-05-07T00:53:30.714065+00:00
-2026-05-06 18:53:43,274 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T00:53:43.274502+00:00
-2026-05-06 18:53:44,185 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.80)
-2026-05-06 18:53:44,258 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 18:53:44,915 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.642s at 2026-05-07T00:53:44.915473+00:00
-2026-05-06 18:56:42,127 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 18:56:42,164 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 18:56:55,483 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:56:55.483048+00:00
-2026-05-06 18:56:55,487 INFO backend.segmentation: [JOB b2b162abddce42c7a37266a35a44b3e4] preparing_image progress=12
-2026-05-06 18:56:55,916 INFO backend.segmentation: [JOB b2b162abddce42c7a37266a35a44b3e4] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 18:56:55,930 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 18:57:00,068 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-06 18:57:01,629 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:57:01,716 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 18:57:01,731 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 18:57:02,949 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:57:03,037 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/a5e246b1-7256-4e47-bd59-4324d860981a "HTTP/1.1 200 OK"
-2026-05-06 18:57:04,851 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 18:57:08,278 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 18:57:08,445 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 18:57:11,795 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/80c98c2b-f464-4c63-be57-df896c3ca445 "HTTP/1.1 200 OK"
-2026-05-06 18:57:11,848 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 18:57:14,425 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 18:57:16,934 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=80c98c2b-f464-4c63-be57-df896c3ca445 "HTTP/1.1 200 OK"
-2026-05-06 18:59:19,174 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\307e144a6a358b2b31461825d5a83d98d89d0a4426bbff036b53a58abbce6a7f\image.webp "HTTP/1.1 200 OK"
-2026-05-06 18:59:19,199 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=75
-2026-05-06 18:59:19,201 INFO backend.segmentation: [JOB b2b162abddce42c7a37266a35a44b3e4] saving_masks progress=92
-2026-05-06 18:59:19,479 INFO backend.segmentation: [JOB b2b162abddce42c7a37266a35a44b3e4] segments_meta saved (65 segments)
-2026-05-06 18:59:19,480 INFO backend.segmentation: [JOB b2b162abddce42c7a37266a35a44b3e4] done mask_count=75
-2026-05-06 18:59:19,481 INFO backend.segmentation: [UPLOAD_BG] DONE 143.997s at 2026-05-07T00:59:19.481114+00:00
-2026-05-06 18:59:19,481 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:00:44,615 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 19:00:44,631 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 19:00:54,117 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:00:54.117066+00:00
-2026-05-06 19:00:54,118 INFO backend.segmentation: [JOB 857272f2f2794d61a8320ba9fc0a0b9c] preparing_image progress=12
-2026-05-06 19:00:54,227 INFO backend.segmentation: [JOB 857272f2f2794d61a8320ba9fc0a0b9c] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 19:00:54,228 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 19:00:55,352 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-06 19:00:55,962 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:00:56,025 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:00:56,027 ERROR backend.segmentation: [JOB 857272f2f2794d61a8320ba9fc0a0b9c] failed: GPU Gradio Space failed and no CPU fallback configured. Error: Cannot find a function with `api_name`: /segment.
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 137, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 87, in segment_via_gradio_sync
- raise RuntimeError(f"GPU Gradio Space failed and no CPU fallback configured. Error: {gpu_error}")
-RuntimeError: GPU Gradio Space failed and no CPU fallback configured. Error: Cannot find a function with `api_name`: /segment.
-2026-05-06 19:00:56,028 INFO backend.segmentation: [UPLOAD_BG] DONE 1.912s at 2026-05-07T01:00:56.028803+00:00
-2026-05-06 19:00:56,029 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:00:56,598 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:00:56,674 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/4209bbfb-31fd-49ce-8bfa-3bd088857ca8 "HTTP/1.1 200 OK"
-2026-05-06 19:01:51,403 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:01:51.403342+00:00
-2026-05-06 19:01:51,403 INFO backend.segmentation: [JOB 3767a577a5df43449aa13600c7a14d0c] preparing_image progress=12
-2026-05-06 19:01:51,499 INFO backend.segmentation: [JOB 3767a577a5df43449aa13600c7a14d0c] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 19:01:51,499 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 19:01:52,190 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-06 19:01:52,799 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:01:52,856 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:01:52,857 ERROR backend.segmentation: [JOB 3767a577a5df43449aa13600c7a14d0c] failed: GPU Gradio Space failed and no CPU fallback configured. Error: Cannot find a function with `api_name`: /segment.
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 137, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 87, in segment_via_gradio_sync
- raise RuntimeError(f"GPU Gradio Space failed and no CPU fallback configured. Error: {gpu_error}")
-RuntimeError: GPU Gradio Space failed and no CPU fallback configured. Error: Cannot find a function with `api_name`: /segment.
-2026-05-06 19:01:52,858 INFO backend.segmentation: [UPLOAD_BG] DONE 1.455s at 2026-05-07T01:01:52.858105+00:00
-2026-05-06 19:01:52,858 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:01:53,023 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:01:53,494 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/2c3065a9-d718-45a7-8b87-980f332c885e "HTTP/1.1 200 OK"
-2026-05-06 19:17:22,918 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:17:22.918521+00:00
-2026-05-06 19:17:22,918 INFO backend.segmentation: [JOB 2f51a6c8a71e4a1abde690771af923c8] preparing_image progress=12
-2026-05-06 19:17:23,012 INFO backend.segmentation: [JOB 2f51a6c8a71e4a1abde690771af923c8] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 19:17:23,013 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 19:17:23,790 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-06 19:17:24,541 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:17:24,595 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:17:24,596 ERROR backend.segmentation: [JOB 2f51a6c8a71e4a1abde690771af923c8] failed: GPU Gradio Space failed and no CPU fallback configured. Error: Cannot find a function with `api_name`: /segment.
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 137, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 87, in segment_via_gradio_sync
- raise RuntimeError(f"GPU Gradio Space failed and no CPU fallback configured. Error: {gpu_error}")
-RuntimeError: GPU Gradio Space failed and no CPU fallback configured. Error: Cannot find a function with `api_name`: /segment.
-2026-05-06 19:17:24,598 INFO backend.segmentation: [UPLOAD_BG] DONE 1.680s at 2026-05-07T01:17:24.598238+00:00
-2026-05-06 19:17:24,599 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:17:24,970 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:17:25,584 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/0dc57ee9-5e05-4959-abe6-f013266fa198 "HTTP/1.1 200 OK"
-2026-05-06 19:17:42,518 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-06 19:17:42,533 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 19:17:51,915 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:17:51.915900+00:00
-2026-05-06 19:17:51,915 INFO backend.segmentation: [JOB 63e59d4c364544d9a7e673575d6476fa] preparing_image progress=12
-2026-05-06 19:17:52,074 INFO backend.segmentation: [JOB 63e59d4c364544d9a7e673575d6476fa] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 19:17:52,077 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 19:17:55,274 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 19:17:57,503 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:17:57,507 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:17:57,507 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 19:17:57,893 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:17:59,796 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/f7a98d0a-9306-4dbc-93b7-601ff79c950e "HTTP/1.1 200 OK"
-2026-05-06 19:17:59,799 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 19:18:02,032 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:18:02,104 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:18:04,304 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/2d410380-be25-4691-8948-df224948856b "HTTP/1.1 200 OK"
-2026-05-06 19:18:04,308 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 19:18:06,507 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 19:18:08,705 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=2d410380-be25-4691-8948-df224948856b "HTTP/1.1 200 OK"
-2026-05-06 19:20:30,315 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\ba6745bca4b9348c165f22fc4ea78e92894e852d9a17a054a2f8f302e7eede49\image.webp "HTTP/1.1 200 OK"
-2026-05-06 19:20:30,336 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=108
-2026-05-06 19:20:30,342 INFO backend.segmentation: [JOB 63e59d4c364544d9a7e673575d6476fa] saving_masks progress=92
-2026-05-06 19:20:30,735 INFO backend.segmentation: [JOB 63e59d4c364544d9a7e673575d6476fa] segments_meta saved (94 segments)
-2026-05-06 19:20:30,736 INFO backend.segmentation: [JOB 63e59d4c364544d9a7e673575d6476fa] done mask_count=108
-2026-05-06 19:20:30,736 INFO backend.segmentation: [UPLOAD_BG] DONE 158.821s at 2026-05-07T01:20:30.736356+00:00
-2026-05-06 19:20:30,736 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:20:54,598 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:20:54.598398+00:00
-2026-05-06 19:20:55,454 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.22, h_ratio=1.42)
-2026-05-06 19:20:55,479 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:20:55,852 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.253s at 2026-05-07T01:20:55.852286+00:00
-2026-05-06 19:21:02,878 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:02.878905+00:00
-2026-05-06 19:21:03,409 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.03)
-2026-05-06 19:21:03,430 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:03,652 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.774s at 2026-05-07T01:21:03.652782+00:00
-2026-05-06 19:21:04,556 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:04.556252+00:00
-2026-05-06 19:21:05,073 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:05,304 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.749s at 2026-05-07T01:21:05.304889+00:00
-2026-05-06 19:21:09,382 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:09.382363+00:00
-2026-05-06 19:21:09,876 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:10,099 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.717s at 2026-05-07T01:21:10.099363+00:00
-2026-05-06 19:21:12,168 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:12.168998+00:00
-2026-05-06 19:21:12,676 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:12,902 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.734s at 2026-05-07T01:21:12.902123+00:00
-2026-05-06 19:21:17,676 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:17.676155+00:00
-2026-05-06 19:21:18,186 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:18,406 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.730s at 2026-05-07T01:21:18.406221+00:00
-2026-05-06 19:21:28,033 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:28.033139+00:00
-2026-05-06 19:21:28,602 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.04, h_ratio=30.15)
-2026-05-06 19:21:28,621 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:28,847 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.815s at 2026-05-07T01:21:28.847576+00:00
-2026-05-06 19:21:37,759 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:37.759732+00:00
-2026-05-06 19:21:38,294 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.08, h_ratio=2.31)
-2026-05-06 19:21:38,324 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:38,542 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.783s at 2026-05-07T01:21:38.542862+00:00
-2026-05-06 19:21:45,517 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:45.517095+00:00
-2026-05-06 19:21:45,886 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.45, h_ratio=1.00)
-2026-05-06 19:21:45,904 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:46,127 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.610s at 2026-05-07T01:21:46.127155+00:00
-2026-05-06 19:21:47,910 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:21:47.910379+00:00
-2026-05-06 19:21:48,240 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.03)
-2026-05-06 19:21:48,258 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:21:48,550 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.640s at 2026-05-07T01:21:48.550311+00:00
-2026-05-06 19:22:01,490 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:22:01.490043+00:00
-2026-05-06 19:22:01,800 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.40, h_ratio=1.19)
-2026-05-06 19:22:01,820 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:22:02,038 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.549s at 2026-05-07T01:22:02.038685+00:00
-2026-05-06 19:22:14,676 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:22:14.676095+00:00
-2026-05-06 19:22:14,981 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.24)
-2026-05-06 19:22:15,000 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:22:15,217 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.542s at 2026-05-07T01:22:15.217076+00:00
-2026-05-06 19:22:18,393 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:22:18.393596+00:00
-2026-05-06 19:22:18,727 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=3.19, h_ratio=1.08)
-2026-05-06 19:22:18,748 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:22:18,967 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.573s at 2026-05-07T01:22:18.967471+00:00
-2026-05-06 19:22:20,453 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:22:20.453051+00:00
-2026-05-06 19:22:20,787 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.25, h_ratio=1.00)
-2026-05-06 19:22:20,807 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:22:21,031 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.578s at 2026-05-07T01:22:21.031223+00:00
-2026-05-06 19:22:21,815 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:22:21.815779+00:00
-2026-05-06 19:22:22,122 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:22:22,328 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.512s at 2026-05-07T01:22:22.328994+00:00
-2026-05-06 19:23:32,211 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:23:32.211857+00:00
-2026-05-06 19:23:32,509 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:23:32,730 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.518s at 2026-05-07T01:23:32.730152+00:00
-2026-05-06 19:23:38,227 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:23:38.227849+00:00
-2026-05-06 19:23:38,534 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:23:38,859 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.632s at 2026-05-07T01:23:38.859962+00:00
-2026-05-06 19:26:19,159 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:26:19.158670+00:00
-2026-05-06 19:26:19,159 INFO backend.segmentation: [JOB 8008bb4df0774cc693f720f155ffe536] preparing_image progress=12
-2026-05-06 19:26:19,236 INFO backend.segmentation: [JOB 8008bb4df0774cc693f720f155ffe536] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-06 19:26:19,237 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 19:26:21,653 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 19:26:24,033 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:26:24,036 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:26:24,038 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 19:26:24,154 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:26:25,313 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:26:25.313791+00:00
-2026-05-06 19:26:25,314 INFO backend.segmentation: [JOB 7aac21170040414a9aefcbeb3fbff6c5] preparing_image progress=12
-2026-05-06 19:26:25,380 INFO backend.segmentation: [JOB 7aac21170040414a9aefcbeb3fbff6c5] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 19:26:25,382 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 19:26:26,501 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 19:26:26,514 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/253a1026-e06a-44b1-a442-8e6324d90510 "HTTP/1.1 200 OK"
-2026-05-06 19:26:27,773 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 19:26:28,745 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:26:28,804 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:26:29,998 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:26:30,000 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:26:30,000 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 19:26:30,064 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:26:31,044 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/ef93ac7c-1d1e-49c1-a68d-1e312c61dbd6 "HTTP/1.1 200 OK"
-2026-05-06 19:26:31,045 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 19:26:32,302 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/f94b5838-f8e4-404c-b91a-44c18e0fd13d "HTTP/1.1 200 OK"
-2026-05-06 19:26:32,303 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 19:26:33,276 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 19:26:34,511 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:26:34,571 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:26:35,511 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=ef93ac7c-1d1e-49c1-a68d-1e312c61dbd6 "HTTP/1.1 200 OK"
-2026-05-06 19:26:36,930 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/f61335a1-cff8-4529-990e-d2408f346c4b "HTTP/1.1 200 OK"
-2026-05-06 19:26:36,985 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 19:26:39,872 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 19:26:42,392 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=f61335a1-cff8-4529-990e-d2408f346c4b "HTTP/1.1 200 OK"
-2026-05-06 19:28:56,877 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\6ab9a3531b560f214c105197415e0af0532fde83c6bfe58ed1c0313fcd859477\image.webp "HTTP/1.1 200 OK"
-2026-05-06 19:28:56,897 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=131
-2026-05-06 19:28:56,898 INFO backend.segmentation: [JOB 8008bb4df0774cc693f720f155ffe536] saving_masks progress=92
-2026-05-06 19:28:57,283 INFO backend.segmentation: [JOB 8008bb4df0774cc693f720f155ffe536] segments_meta saved (100 segments)
-2026-05-06 19:28:57,286 INFO backend.segmentation: [JOB 8008bb4df0774cc693f720f155ffe536] done mask_count=131
-2026-05-06 19:28:57,290 INFO backend.segmentation: [UPLOAD_BG] DONE 158.131s at 2026-05-07T01:28:57.289976+00:00
-2026-05-06 19:28:57,290 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:31:09,088 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\0fad9dd5d2167e81275663b268759f254ced3260a00596d8148c4b82b18a447b\image.webp "HTTP/1.1 200 OK"
-2026-05-06 19:31:09,105 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=108
-2026-05-06 19:31:09,106 INFO backend.segmentation: [JOB 7aac21170040414a9aefcbeb3fbff6c5] saving_masks progress=92
-2026-05-06 19:31:09,387 INFO backend.segmentation: [JOB 7aac21170040414a9aefcbeb3fbff6c5] segments_meta saved (83 segments)
-2026-05-06 19:31:09,388 INFO backend.segmentation: [JOB 7aac21170040414a9aefcbeb3fbff6c5] done mask_count=108
-2026-05-06 19:31:09,389 INFO backend.segmentation: [UPLOAD_BG] DONE 284.075s at 2026-05-07T01:31:09.389195+00:00
-2026-05-06 19:31:09,389 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:31:25,769 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:31:25.769543+00:00
-2026-05-06 19:31:26,322 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.38, h_ratio=1.21)
-2026-05-06 19:31:26,345 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:31:26,561 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.791s at 2026-05-07T01:31:26.561149+00:00
-2026-05-06 19:31:30,093 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:31:30.093130+00:00
-2026-05-06 19:31:30,610 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=73.16, h_ratio=1.19)
-2026-05-06 19:31:30,630 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:31:30,852 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.760s at 2026-05-07T01:31:30.852656+00:00
-2026-05-06 19:31:32,510 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:31:32.510227+00:00
-2026-05-06 19:31:33,024 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:31:33,261 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.751s at 2026-05-07T01:31:33.261864+00:00
-2026-05-06 19:31:34,688 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:31:34.688411+00:00
-2026-05-06 19:31:35,245 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.82, h_ratio=1.04)
-2026-05-06 19:31:35,273 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:31:35,585 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.897s at 2026-05-07T01:31:35.585466+00:00
-2026-05-06 19:31:37,308 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:31:37.308846+00:00
-2026-05-06 19:31:37,845 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:31:38,063 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.754s at 2026-05-07T01:31:38.063134+00:00
-2026-05-06 19:31:39,470 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:31:39.470279+00:00
-2026-05-06 19:31:40,021 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.28)
-2026-05-06 19:31:40,041 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:31:40,265 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.795s at 2026-05-07T01:31:40.265221+00:00
-2026-05-06 19:32:07,072 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:32:07.072763+00:00
-2026-05-06 19:32:07,073 INFO backend.segmentation: [JOB 28de69b0b9f74b04a79ddc8f1c43f4a5] preparing_image progress=12
-2026-05-06 19:32:07,137 INFO backend.segmentation: [JOB 28de69b0b9f74b04a79ddc8f1c43f4a5] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-06 19:32:07,137 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 19:32:09,529 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 19:32:11,885 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:32:11,888 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:32:11,888 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 19:32:12,020 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:32:14,326 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/be75cb37-7b07-4bcc-8b3d-efdee17bbc4a "HTTP/1.1 200 OK"
-2026-05-06 19:32:14,327 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 19:32:16,703 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:32:16,767 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:32:19,164 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/c6911703-f527-40a3-889a-6c77edcd8d21 "HTTP/1.1 200 OK"
-2026-05-06 19:32:19,202 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 19:32:21,606 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 19:32:24,189 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=c6911703-f527-40a3-889a-6c77edcd8d21 "HTTP/1.1 200 OK"
-2026-05-06 19:34:39,587 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\21889eae2fc6a2146ef59d302265bd9c57edff263c81a559c184526108f142d6\image.webp "HTTP/1.1 200 OK"
-2026-05-06 19:34:39,600 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=160
-2026-05-06 19:34:39,601 INFO backend.segmentation: [JOB 28de69b0b9f74b04a79ddc8f1c43f4a5] saving_masks progress=92
-2026-05-06 19:34:39,913 INFO backend.segmentation: [JOB 28de69b0b9f74b04a79ddc8f1c43f4a5] segments_meta saved (109 segments)
-2026-05-06 19:34:39,916 INFO backend.segmentation: [JOB 28de69b0b9f74b04a79ddc8f1c43f4a5] done mask_count=160
-2026-05-06 19:34:39,916 INFO backend.segmentation: [UPLOAD_BG] DONE 152.844s at 2026-05-07T01:34:39.916411+00:00
-2026-05-06 19:34:39,917 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:34:58,860 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:34:58.860869+00:00
-2026-05-06 19:34:59,384 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=2.09)
-2026-05-06 19:34:59,410 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 19:34:59,597 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.737s at 2026-05-07T01:34:59.597723+00:00
-2026-05-06 19:35:04,315 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:35:04.314184+00:00
-2026-05-06 19:35:04,828 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 19:35:05,031 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.717s at 2026-05-07T01:35:05.031564+00:00
-2026-05-06 19:35:07,195 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:35:07.195100+00:00
-2026-05-06 19:35:07,775 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 19:35:07,959 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.764s at 2026-05-07T01:35:07.959507+00:00
-2026-05-06 19:35:16,717 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:35:16.717055+00:00
-2026-05-06 19:35:17,292 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.12, h_ratio=1.24)
-2026-05-06 19:35:17,313 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 19:35:17,489 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.772s at 2026-05-07T01:35:17.489338+00:00
-2026-05-06 19:35:21,896 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:35:21.896286+00:00
-2026-05-06 19:35:22,460 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.24, h_ratio=2.25)
-2026-05-06 19:35:22,477 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 19:35:22,652 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.756s at 2026-05-07T01:35:22.652693+00:00
-2026-05-06 19:35:31,661 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:35:31.661603+00:00
-2026-05-06 19:35:31,662 INFO backend.segmentation: [JOB 97d58fca6faa4b94b385e3762a859555] preparing_image progress=12
-2026-05-06 19:35:31,730 INFO backend.segmentation: [JOB 97d58fca6faa4b94b385e3762a859555] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-06 19:35:31,730 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 19:35:34,148 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 19:35:36,513 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:35:36,516 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:35:36,517 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 19:35:36,647 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:35:38,956 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/bee4b6dd-5fb5-46e5-b79e-991fbe34799b "HTTP/1.1 200 OK"
-2026-05-06 19:35:38,972 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 19:35:41,374 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:35:41,437 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:35:43,849 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 19:35:43,862 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/d8a928aa-2516-473b-85f5-9bf75d1e3f77 "HTTP/1.1 200 OK"
-2026-05-06 19:35:46,265 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 19:35:48,784 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=d8a928aa-2516-473b-85f5-9bf75d1e3f77 "HTTP/1.1 200 OK"
-2026-05-06 19:38:08,031 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\21889eae2fc6a2146ef59d302265bd9c57edff263c81a559c184526108f142d6\image.webp "HTTP/1.1 200 OK"
-2026-05-06 19:38:08,050 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=160
-2026-05-06 19:38:08,051 INFO backend.segmentation: [JOB 97d58fca6faa4b94b385e3762a859555] saving_masks progress=92
-2026-05-06 19:38:08,352 INFO backend.segmentation: [JOB 97d58fca6faa4b94b385e3762a859555] segments_meta saved (109 segments)
-2026-05-06 19:38:08,353 INFO backend.segmentation: [JOB 97d58fca6faa4b94b385e3762a859555] done mask_count=160
-2026-05-06 19:38:08,353 INFO backend.segmentation: [UPLOAD_BG] DONE 156.692s at 2026-05-07T01:38:08.353974+00:00
-2026-05-06 19:38:08,353 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:38:54,725 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:38:54.725946+00:00
-2026-05-06 19:38:55,301 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 19:38:55,485 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.760s at 2026-05-07T01:38:55.485826+00:00
-2026-05-06 19:39:02,094 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:39:02.094076+00:00
-2026-05-06 19:39:02,676 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 19:39:02,898 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.805s at 2026-05-07T01:39:02.898407+00:00
-2026-05-06 19:39:05,813 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:39:05.813452+00:00
-2026-05-06 19:39:05,813 INFO backend.segmentation: [JOB 90601a35a7a147e784baf2d51c1e45e7] preparing_image progress=12
-2026-05-06 19:39:05,890 INFO backend.segmentation: [JOB 90601a35a7a147e784baf2d51c1e45e7] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-06 19:39:05,891 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-06 19:39:08,294 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-06 19:39:10,647 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:39:10,650 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:39:10,650 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7861
-2026-05-06 19:39:10,769 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:39:13,127 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/4460ecf1-ea82-47e4-a1d6-b5bc3d4c71d2 "HTTP/1.1 200 OK"
-2026-05-06 19:39:13,130 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-06 19:39:15,535 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:39:15,595 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:39:17,956 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/97643e3a-0304-4e2b-8472-769ee08d3b1b "HTTP/1.1 200 OK"
-2026-05-06 19:39:17,959 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 19:39:20,370 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 19:39:22,889 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=97643e3a-0304-4e2b-8472-769ee08d3b1b "HTTP/1.1 200 OK"
-2026-05-06 19:41:28,459 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\76d9b286b2fcdbd80abdc7e15a0a7f680d3f4fbf2b90ca4d6d6f24bbf1545d1c\image.webp "HTTP/1.1 200 OK"
-2026-05-06 19:41:28,470 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=166
-2026-05-06 19:41:28,471 INFO backend.segmentation: [JOB 90601a35a7a147e784baf2d51c1e45e7] saving_masks progress=92
-2026-05-06 19:41:28,681 INFO backend.segmentation: [JOB 90601a35a7a147e784baf2d51c1e45e7] segments_meta saved (137 segments)
-2026-05-06 19:41:28,681 INFO backend.segmentation: [JOB 90601a35a7a147e784baf2d51c1e45e7] done mask_count=166
-2026-05-06 19:41:28,682 INFO backend.segmentation: [UPLOAD_BG] DONE 142.868s at 2026-05-07T01:41:28.682118+00:00
-2026-05-06 19:41:28,682 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:50:21,809 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 19:50:21,823 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-06 19:50:26,378 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T01:50:26.378489+00:00
-2026-05-06 19:50:26,384 INFO backend.segmentation: [JOB 3731a48e488e4df2831bb7387b531e3c] preparing_image progress=12
-2026-05-06 19:50:26,471 INFO backend.segmentation: [JOB 3731a48e488e4df2831bb7387b531e3c] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-06 19:50:26,472 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 19:50:27,262 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-06 19:50:27,877 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:50:27,893 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-06 19:50:27,897 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-06 19:50:28,465 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:50:28,587 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/5aad3e23-2d4a-4ff2-b2d1-2ff407eed648 "HTTP/1.1 200 OK"
-2026-05-06 19:50:28,729 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-06 19:50:29,178 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 19:50:29,318 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 19:50:30,078 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 19:50:30,375 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/bf131e2f-59cc-4bcb-90cf-326d0eed81f6 "HTTP/1.1 200 OK"
-2026-05-06 19:50:30,577 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 19:50:30,996 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/data?session_hash=bf131e2f-59cc-4bcb-90cf-326d0eed81f6 "HTTP/1.1 200 OK"
-2026-05-06 19:56:12,792 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/file=/tmp/gradio/ca352ba59707f92cf2713ac194ff5f07119898301b89fe92d0d511d51a9854a3/image.webp "HTTP/1.1 200 OK"
-2026-05-06 19:56:12,902 INFO services.gradio_client_service: Gradio Space segmentation: entorno=auto motor=SAM Auto (Exteriores - Sin Prompts) mask_count=108
-2026-05-06 19:56:12,904 INFO backend.segmentation: [JOB 3731a48e488e4df2831bb7387b531e3c] saving_masks progress=92
-2026-05-06 19:56:13,248 INFO backend.segmentation: [JOB 3731a48e488e4df2831bb7387b531e3c] segments_meta saved (94 segments)
-2026-05-06 19:56:13,248 INFO backend.segmentation: [JOB 3731a48e488e4df2831bb7387b531e3c] done mask_count=108
-2026-05-06 19:56:13,248 INFO backend.segmentation: [UPLOAD_BG] DONE 346.870s at 2026-05-07T01:56:13.248662+00:00
-2026-05-06 19:56:13,249 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 19:56:28,190 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:56:28.190920+00:00
-2026-05-06 19:56:28,586 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.89, h_ratio=1.16)
-2026-05-06 19:56:28,610 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:56:28,946 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.756s at 2026-05-07T01:56:28.946955+00:00
-2026-05-06 19:56:32,308 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:56:32.308758+00:00
-2026-05-06 19:56:32,636 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:56:32,842 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.534s at 2026-05-07T01:56:32.842046+00:00
-2026-05-06 19:56:38,221 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:56:38.221694+00:00
-2026-05-06 19:56:38,549 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.45, h_ratio=1.00)
-2026-05-06 19:56:38,582 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:56:38,797 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.576s at 2026-05-07T01:56:38.797605+00:00
-2026-05-06 19:56:40,976 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:56:40.976482+00:00
-2026-05-06 19:56:41,307 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.03)
-2026-05-06 19:56:41,347 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:56:41,596 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.620s at 2026-05-07T01:56:41.596887+00:00
-2026-05-06 19:56:45,053 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:56:45.053373+00:00
-2026-05-06 19:56:45,558 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:56:45,750 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.697s at 2026-05-07T01:56:45.750699+00:00
-2026-05-06 19:56:48,758 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:56:48.757132+00:00
-2026-05-06 19:56:49,268 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.08, h_ratio=2.31)
-2026-05-06 19:56:49,292 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:56:49,508 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.751s at 2026-05-07T01:56:49.508898+00:00
-2026-05-06 19:56:53,597 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T01:56:53.597538+00:00
-2026-05-06 19:56:54,195 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.45, h_ratio=1.00)
-2026-05-06 19:56:54,219 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-06 19:56:54,438 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.841s at 2026-05-07T01:56:54.438299+00:00
-2026-05-06 20:00:21,372 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T02:00:21.372294+00:00
-2026-05-06 20:00:21,372 INFO backend.segmentation: [JOB 9dd987f4caec430e9a186637a9178708] preparing_image progress=12
-2026-05-06 20:00:21,437 INFO backend.segmentation: [JOB 9dd987f4caec430e9a186637a9178708] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-06 20:00:21,437 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-06 20:00:22,134 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-06 20:00:22,726 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-06 20:00:22,915 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-06 20:00:23,461 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/c7959aba-7eb6-4ecb-81ad-712329ac5c7c "HTTP/1.1 200 OK"
-2026-05-06 20:00:23,560 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-06 20:00:24,012 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-06 20:00:24,861 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=c7959aba-7eb6-4ecb-81ad-712329ac5c7c "HTTP/1.1 200 OK"
-2026-05-06 20:00:42,409 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/b16694b4215c6ddd7ab507195e91a516ff5142807df0ec7e847eb878eb7c1ab3/image.webp "HTTP/1.1 200 OK"
-2026-05-06 20:00:42,518 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=131
-2026-05-06 20:00:42,519 INFO backend.segmentation: [JOB 9dd987f4caec430e9a186637a9178708] saving_masks progress=92
-2026-05-06 20:00:42,727 INFO backend.segmentation: [JOB 9dd987f4caec430e9a186637a9178708] segments_meta saved (114 segments)
-2026-05-06 20:00:42,727 INFO backend.segmentation: [JOB 9dd987f4caec430e9a186637a9178708] done mask_count=131
-2026-05-06 20:00:42,727 INFO backend.segmentation: [UPLOAD_BG] DONE 21.356s at 2026-05-07T02:00:42.727446+00:00
-2026-05-06 20:00:42,728 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-06 20:17:14,645 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T02:17:14.645451+00:00
-2026-05-06 20:17:15,135 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.24, h_ratio=1.09)
-2026-05-06 20:17:15,152 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 20:17:15,329 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.684s at 2026-05-07T02:17:15.329979+00:00
-2026-05-06 20:17:15,339 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T02:17:15.339985+00:00
-2026-05-06 20:17:15,656 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.24, h_ratio=1.09)
-2026-05-06 20:17:15,678 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 20:17:15,875 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.535s at 2026-05-07T02:17:15.875096+00:00
-2026-05-06 20:17:34,601 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T02:17:34.601321+00:00
-2026-05-06 20:17:34,920 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 20:17:35,110 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.510s at 2026-05-07T02:17:35.110889+00:00
-2026-05-06 20:17:42,322 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T02:17:42.322700+00:00
-2026-05-06 20:17:42,821 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 20:17:42,999 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.677s at 2026-05-07T02:17:42.998640+00:00
-2026-05-06 20:17:46,209 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T02:17:46.209208+00:00
-2026-05-06 20:17:46,792 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.24, h_ratio=1.09)
-2026-05-06 20:17:46,811 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-06 20:17:46,990 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.781s at 2026-05-07T02:17:46.990848+00:00
-2026-05-07 12:51:24,606 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 12:51:24,620 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 12:51:38,487 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T18:51:38.487778+00:00
-2026-05-07 12:51:38,488 INFO backend.segmentation: [JOB 021594e26fe54ec19990002de5a49e1e] preparing_image progress=12
-2026-05-07 12:51:38,722 INFO backend.segmentation: [JOB 021594e26fe54ec19990002de5a49e1e] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 12:51:38,722 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 12:51:57,921 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 12:51:58,597 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 12:51:59,277 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 12:51:59,382 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/94b31a0d-c4b3-4776-9bf3-feb7cfb2deb5 "HTTP/1.1 200 OK"
-2026-05-07 12:51:59,569 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 12:52:00,104 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 12:52:00,784 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=94b31a0d-c4b3-4776-9bf3-feb7cfb2deb5 "HTTP/1.1 200 OK"
-2026-05-07 12:52:21,780 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/58f73381cbe3266caa6d35a2c12cb77e720345122d5cf9f7cdb96e041ceca7c9/image.webp "HTTP/1.1 200 OK"
-2026-05-07 12:52:21,889 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=108
-2026-05-07 12:52:21,890 INFO backend.segmentation: [JOB 021594e26fe54ec19990002de5a49e1e] saving_masks progress=92
-2026-05-07 12:52:22,192 INFO backend.segmentation: [JOB 021594e26fe54ec19990002de5a49e1e] segments_meta saved (94 segments)
-2026-05-07 12:52:22,192 INFO backend.segmentation: [JOB 021594e26fe54ec19990002de5a49e1e] done mask_count=108
-2026-05-07 12:52:22,192 INFO backend.segmentation: [UPLOAD_BG] DONE 43.706s at 2026-05-07T18:52:22.192480+00:00
-2026-05-07 12:52:22,193 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 12:56:10,928 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T18:56:10.928142+00:00
-2026-05-07 12:56:10,929 INFO backend.segmentation: [JOB 6e3dc1caa0ea4d58a9fdb96458cc352a] preparing_image progress=12
-2026-05-07 12:56:10,997 INFO backend.segmentation: [JOB 6e3dc1caa0ea4d58a9fdb96458cc352a] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 12:56:10,997 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 12:56:11,625 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 12:56:12,229 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 12:56:12,412 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 12:56:12,966 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/ed1495a1-4a2c-4fab-a409-975c2768b89c "HTTP/1.1 200 OK"
-2026-05-07 12:56:13,063 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 12:56:13,579 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 12:56:14,152 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=ed1495a1-4a2c-4fab-a409-975c2768b89c "HTTP/1.1 200 OK"
-2026-05-07 12:56:25,727 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/58f73381cbe3266caa6d35a2c12cb77e720345122d5cf9f7cdb96e041ceca7c9/image.webp "HTTP/1.1 200 OK"
-2026-05-07 12:56:25,845 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=108
-2026-05-07 12:56:25,845 INFO backend.segmentation: [JOB 6e3dc1caa0ea4d58a9fdb96458cc352a] saving_masks progress=92
-2026-05-07 12:56:26,112 INFO backend.segmentation: [JOB 6e3dc1caa0ea4d58a9fdb96458cc352a] segments_meta saved (94 segments)
-2026-05-07 12:56:26,112 INFO backend.segmentation: [JOB 6e3dc1caa0ea4d58a9fdb96458cc352a] done mask_count=108
-2026-05-07 12:56:26,112 INFO backend.segmentation: [UPLOAD_BG] DONE 15.184s at 2026-05-07T18:56:26.112231+00:00
-2026-05-07 12:56:26,112 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 13:01:56,800 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T19:01:56.800564+00:00
-2026-05-07 13:01:56,801 INFO backend.segmentation: [JOB c145be47d09942d691ae3f650e362810] preparing_image progress=12
-2026-05-07 13:01:56,873 INFO backend.segmentation: [JOB c145be47d09942d691ae3f650e362810] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 13:01:56,874 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 13:01:57,517 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 13:01:58,135 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 13:01:58,320 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 13:01:58,810 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/5c3e334b-800c-4d78-93b4-35d66a611f5d "HTTP/1.1 200 OK"
-2026-05-07 13:01:58,963 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 13:01:59,514 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 13:02:00,027 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=5c3e334b-800c-4d78-93b4-35d66a611f5d "HTTP/1.1 200 OK"
-2026-05-07 13:02:11,627 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/58f73381cbe3266caa6d35a2c12cb77e720345122d5cf9f7cdb96e041ceca7c9/image.webp "HTTP/1.1 200 OK"
-2026-05-07 13:02:11,743 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=108
-2026-05-07 13:02:11,747 INFO backend.segmentation: [JOB c145be47d09942d691ae3f650e362810] saving_masks progress=92
-2026-05-07 13:02:12,035 INFO backend.segmentation: [JOB c145be47d09942d691ae3f650e362810] segments_meta saved (94 segments)
-2026-05-07 13:02:12,035 INFO backend.segmentation: [JOB c145be47d09942d691ae3f650e362810] done mask_count=108
-2026-05-07 13:02:12,035 INFO backend.segmentation: [UPLOAD_BG] DONE 15.235s at 2026-05-07T19:02:12.035158+00:00
-2026-05-07 13:02:12,036 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 14:54:46,839 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 14:54:46,873 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 14:55:18,464 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T20:55:18.464808+00:00
-2026-05-07 14:55:18,465 INFO backend.segmentation: [JOB e2978c252391482ea410013edd5dd614] preparing_image progress=12
-2026-05-07 14:55:18,684 INFO backend.segmentation: [JOB e2978c252391482ea410013edd5dd614] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 14:55:18,684 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 14:55:20,941 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 14:55:21,523 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 14:55:22,147 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 14:55:22,266 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/044411e2-1c1d-423c-8a2b-1bf8aa03347d "HTTP/1.1 200 OK"
-2026-05-07 14:55:22,418 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 14:55:22,953 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 14:55:23,627 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=044411e2-1c1d-423c-8a2b-1bf8aa03347d "HTTP/1.1 200 OK"
-2026-05-07 14:55:38,599 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/e46ee411d94ec777ba35b9e436d075e4a9639d5f1e564687b887320d75811f38/image.webp "HTTP/1.1 200 OK"
-2026-05-07 14:55:38,603 WARNING services.gradio_client_service: GPU Space failed (Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/root/.pyenv/versions/3.13.13/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^), trying CPU fallback...
-2026-05-07 14:55:38,604 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-07 14:55:39,263 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 14:55:39,888 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 14:55:40,067 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 14:55:40,580 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/0cb7d459-fd3f-4435-b44f-3d93594c3e32 "HTTP/1.1 200 OK"
-2026-05-07 14:55:40,750 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 14:55:41,291 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 14:55:41,867 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/data?session_hash=0cb7d459-fd3f-4435-b44f-3d93594c3e32 "HTTP/1.1 200 OK"
-2026-05-07 14:59:17,106 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T20:59:17.106093+00:00
-2026-05-07 14:59:17,106 INFO backend.segmentation: [JOB 9d8e54c57b804dd6a5868f2f16907d6a] preparing_image progress=12
-2026-05-07 14:59:17,177 INFO backend.segmentation: [JOB 9d8e54c57b804dd6a5868f2f16907d6a] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 14:59:17,178 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 14:59:17,820 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 14:59:18,429 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 14:59:18,612 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 14:59:19,270 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/4bafc24c-7b3e-47e5-ab5c-040b1104f6ad "HTTP/1.1 200 OK"
-2026-05-07 14:59:19,316 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 14:59:19,895 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 14:59:20,498 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=4bafc24c-7b3e-47e5-ab5c-040b1104f6ad "HTTP/1.1 200 OK"
-2026-05-07 14:59:22,556 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/e46ee411d94ec777ba35b9e436d075e4a9639d5f1e564687b887320d75811f38/image.webp "HTTP/1.1 200 OK"
-2026-05-07 14:59:22,561 WARNING services.gradio_client_service: GPU Space failed (Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/root/.pyenv/versions/3.13.13/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^), trying CPU fallback...
-2026-05-07 14:59:22,562 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-07 14:59:23,331 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 14:59:24,033 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 14:59:24,159 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 14:59:24,691 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/58739913-8194-4cc9-ae76-fab58874372a "HTTP/1.1 200 OK"
-2026-05-07 14:59:24,844 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 14:59:25,478 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 14:59:26,087 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/data?session_hash=58739913-8194-4cc9-ae76-fab58874372a "HTTP/1.1 200 OK"
-2026-05-07 14:59:38,140 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/file=/tmp/gradio/0870aa16fb1d36280b4436effe666b2d40896a35db44e69dfe24e623f43e743b/image.webp "HTTP/1.1 200 OK"
-2026-05-07 14:59:38,143 ERROR backend.segmentation: [JOB e2978c252391482ea410013edd5dd614] failed: Both Gradio Spaces failed.
- GPU (https://eduardo4547-hyper-reality-sam2-gpu.hf.space): Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/root/.pyenv/versions/3.13.13/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/usr/local/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 47, in _call_gradio_sync
- raise RuntimeError(f"Gradio Space error: {combined['error'][:500]}")
-RuntimeError: Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/usr/local/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
-RuntimeError: Both Gradio Spaces failed.
- GPU (https://eduardo4547-hyper-reality-sam2-gpu.hf.space): Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/root/.pyenv/versions/3.13.13/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/usr/local/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-2026-05-07 14:59:38,144 INFO backend.segmentation: [UPLOAD_BG] DONE 259.680s at 2026-05-07T20:59:38.144994+00:00
-2026-05-07 14:59:38,144 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:02:17,066 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 15:02:17,090 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 15:02:54,241 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:02:54.241047+00:00
-2026-05-07 15:02:54,241 INFO backend.segmentation: [JOB 77ed4dd081d7432cbc3073f159883876] preparing_image progress=12
-2026-05-07 15:02:54,369 INFO backend.segmentation: [JOB 77ed4dd081d7432cbc3073f159883876] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 15:02:54,369 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 15:02:55,466 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 15:02:55,989 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:02:56,471 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:02:56,561 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/ae72d127-eaf7-4469-8805-b2f2d63b0e9a "HTTP/1.1 200 OK"
-2026-05-07 15:02:56,764 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:02:57,222 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:02:57,668 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=ae72d127-eaf7-4469-8805-b2f2d63b0e9a "HTTP/1.1 200 OK"
-2026-05-07 15:02:59,650 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/e46ee411d94ec777ba35b9e436d075e4a9639d5f1e564687b887320d75811f38/image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:02:59,653 WARNING services.gradio_client_service: GPU Space failed (Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/root/.pyenv/versions/3.13.13/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^), trying CPU fallback...
-2026-05-07 15:02:59,654 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-07 15:03:01,621 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 15:03:02,088 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:03:02,262 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:03:02,629 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/2f3a5842-bc35-4aa3-8198-e3338bde647a "HTTP/1.1 200 OK"
-2026-05-07 15:03:02,785 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:03:03,183 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:03:03,623 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/data?session_hash=2f3a5842-bc35-4aa3-8198-e3338bde647a "HTTP/1.1 200 OK"
-2026-05-07 15:11:16,099 ERROR backend.segmentation: [JOB 77ed4dd081d7432cbc3073f159883876] failed: Both Gradio Spaces failed.
- GPU (https://eduardo4547-hyper-reality-sam2-gpu.hf.space): Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/root/.pyenv/versions/3.13.13/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space):
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 36, in _call_gradio_sync
- _overlay_file, combined_json_str = client.predict(
- ^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 499, in predict
- ).result()
- ^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 1484, in result
- return super().result(timeout=timeout)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\_base.py", line 456, in result
- return self.__get_result()
- ^^^^^^^^^^^^^^^^^^^
- File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\_base.py", line 401, in __get_result
- raise self._exception
- File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\thread.py", line 59, in run
- result = self.fn(*self.args, **self.kwargs)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 1080, in _inner
- predictions = _predict(*data, **kwargs)
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 1188, in _predict
- result = self._sse_fn_v1plus(helper, event_id, self.protocol)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 1388, in _sse_fn_v1plus
- return utils.get_pred_from_sse_v1plus(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\utils.py", line 395, in get_pred_from_sse_v1plus
- raise exception
- File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.12_3.12.2800.0_x64__qbz5n2kfra8p0\Lib\concurrent\futures\thread.py", line 59, in run
- result = self.fn(*self.args, **self.kwargs)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\utils.py", line 511, in stream_sse_v1plus
- raise concurrent.futures.CancelledError()
-concurrent.futures._base.CancelledError
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
-RuntimeError: Both Gradio Spaces failed.
- GPU (https://eduardo4547-hyper-reality-sam2-gpu.hf.space): Gradio Space error: Traceback (most recent call last):
- File "/app/app.py", line 133, in segment_for_backend
- resultado = sam_vit_pipeline(
- pil_image,
- ...<5 lines>...
- crops_n_layers=PARAMS["crops_n_layers"],
- )
- File "/root/.pyenv/versions/3.13.13/lib/python3.13/site-packages/transformers/pipelines/mask_generation.py", line 190, in __call__
- return super().__call__(image, *args, num_workers=num_workers, batch_size=batch_size, **kwargs)
- ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space):
-2026-05-07 15:11:16,123 INFO backend.segmentation: [UPLOAD_BG] DONE 501.883s at 2026-05-07T21:11:16.123777+00:00
-2026-05-07 15:11:16,123 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:11:33,448 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 15:11:33,462 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 15:11:38,641 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:11:38.641727+00:00
-2026-05-07 15:11:38,642 INFO backend.segmentation: [JOB 710a0f404cce4589bd59a34ef7a8fff9] preparing_image progress=12
-2026-05-07 15:11:38,745 INFO backend.segmentation: [JOB 710a0f404cce4589bd59a34ef7a8fff9] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 15:11:38,747 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 15:11:39,778 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 15:11:40,250 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:11:40,717 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:11:40,821 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/2ba41729-fa1a-4207-b1a6-9c3ef6526887 "HTTP/1.1 200 OK"
-2026-05-07 15:11:40,924 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:11:41,336 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:11:42,039 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=2ba41729-fa1a-4207-b1a6-9c3ef6526887 "HTTP/1.1 200 OK"
-2026-05-07 15:12:02,740 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d17dd4b993c601f166cf197f34896b5d17a23e30a9fe1f5022b368a594a3f823/image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:12:02,846 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-07 15:12:02,846 INFO backend.segmentation: [JOB 710a0f404cce4589bd59a34ef7a8fff9] saving_masks progress=92
-2026-05-07 15:12:02,991 INFO backend.segmentation: [JOB 710a0f404cce4589bd59a34ef7a8fff9] segments_meta saved (54 segments)
-2026-05-07 15:12:02,991 INFO backend.segmentation: [JOB 710a0f404cce4589bd59a34ef7a8fff9] done mask_count=63
-2026-05-07 15:12:02,992 INFO backend.segmentation: [UPLOAD_BG] DONE 24.350s at 2026-05-07T21:12:02.992931+00:00
-2026-05-07 15:12:02,992 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:12:30,031 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:12:30.031296+00:00
-2026-05-07 15:12:30,558 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:12:30,891 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.860s at 2026-05-07T21:12:30.891199+00:00
-2026-05-07 15:13:18,964 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:13:18.964838+00:00
-2026-05-07 15:13:18,964 INFO backend.segmentation: [JOB 27e16fe858474d01905b11a66b235cc4] preparing_image progress=12
-2026-05-07 15:13:19,050 INFO backend.segmentation: [JOB 27e16fe858474d01905b11a66b235cc4] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 15:13:19,051 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 15:13:19,623 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 15:13:20,207 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:13:20,445 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:13:20,882 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/6b2ee8fb-256a-4778-af39-73fbc7180d64 "HTTP/1.1 200 OK"
-2026-05-07 15:13:21,064 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:13:21,680 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:13:22,271 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=6b2ee8fb-256a-4778-af39-73fbc7180d64 "HTTP/1.1 200 OK"
-2026-05-07 15:13:32,414 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d17dd4b993c601f166cf197f34896b5d17a23e30a9fe1f5022b368a594a3f823/image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:13:32,528 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-07 15:13:32,528 INFO backend.segmentation: [JOB 27e16fe858474d01905b11a66b235cc4] saving_masks progress=92
-2026-05-07 15:13:32,702 INFO backend.segmentation: [JOB 27e16fe858474d01905b11a66b235cc4] segments_meta saved (54 segments)
-2026-05-07 15:13:32,703 INFO backend.segmentation: [JOB 27e16fe858474d01905b11a66b235cc4] done mask_count=63
-2026-05-07 15:13:32,703 INFO backend.segmentation: [UPLOAD_BG] DONE 13.740s at 2026-05-07T21:13:32.703517+00:00
-2026-05-07 15:13:32,704 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:19:48,376 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:19:48.376272+00:00
-2026-05-07 15:19:48,376 INFO backend.segmentation: [JOB 6ec5c36da3b941c48ee955a0e6018efd] preparing_image progress=12
-2026-05-07 15:19:48,443 INFO backend.segmentation: [JOB 6ec5c36da3b941c48ee955a0e6018efd] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 15:19:48,444 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-07 15:19:49,095 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-07 15:19:49,716 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:19:49,928 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:19:50,414 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/c601fff9-ae77-444d-86f4-c6eb6ee29ae8 "HTTP/1.1 200 OK"
-2026-05-07 15:19:50,537 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:19:51,092 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:19:51,642 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=c601fff9-ae77-444d-86f4-c6eb6ee29ae8 "HTTP/1.1 200 OK"
-2026-05-07 15:20:01,890 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d17dd4b993c601f166cf197f34896b5d17a23e30a9fe1f5022b368a594a3f823/image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:20:02,004 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-07 15:20:02,005 INFO backend.segmentation: [JOB 6ec5c36da3b941c48ee955a0e6018efd] saving_masks progress=92
-2026-05-07 15:20:02,221 INFO backend.segmentation: [JOB 6ec5c36da3b941c48ee955a0e6018efd] segments_meta saved (54 segments)
-2026-05-07 15:20:02,221 INFO backend.segmentation: [JOB 6ec5c36da3b941c48ee955a0e6018efd] done mask_count=63
-2026-05-07 15:20:02,221 INFO backend.segmentation: [UPLOAD_BG] DONE 13.846s at 2026-05-07T21:20:02.221722+00:00
-2026-05-07 15:20:02,222 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:21:36,330 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:21:36.330551+00:00
-2026-05-07 15:21:36,908 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:21:37,121 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.790s at 2026-05-07T21:21:37.121352+00:00
-2026-05-07 15:21:45,205 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:21:45.203794+00:00
-2026-05-07 15:21:45,723 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-07 15:21:45,743 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:21:45,953 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.748s at 2026-05-07T21:21:45.953335+00:00
-2026-05-07 15:21:49,795 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:21:49.795014+00:00
-2026-05-07 15:21:50,312 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.24)
-2026-05-07 15:21:50,331 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:21:50,547 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.753s at 2026-05-07T21:21:50.547610+00:00
-2026-05-07 15:21:56,068 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:21:56.068945+00:00
-2026-05-07 15:21:56,572 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.18, h_ratio=287.00)
-2026-05-07 15:21:56,592 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:21:56,802 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.734s at 2026-05-07T21:21:56.802967+00:00
-2026-05-07 15:23:52,960 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 15:23:52,981 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 15:24:42,274 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:24:42.274969+00:00
-2026-05-07 15:24:42,274 INFO backend.segmentation: [JOB ca20946463e74f8a9be921cb5dc3580f] preparing_image progress=12
-2026-05-07 15:24:42,409 INFO backend.segmentation: [JOB ca20946463e74f8a9be921cb5dc3580f] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 15:24:42,414 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 15:24:45,341 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 15:24:47,723 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:24:48,299 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:24:50,226 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/dab64d79-0e60-4114-b75e-b53930a5d4f7 "HTTP/1.1 200 OK"
-2026-05-07 15:24:50,247 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:24:54,192 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:24:56,620 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=dab64d79-0e60-4114-b75e-b53930a5d4f7 "HTTP/1.1 200 OK"
-2026-05-07 15:27:24,526 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\e9e23a4c03e9b88d2db6cb764c2778b1091e1c8b97c256c28501ff9297140221\image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:27:24,538 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-07 15:27:24,538 INFO backend.segmentation: [JOB ca20946463e74f8a9be921cb5dc3580f] saving_masks progress=92
-2026-05-07 15:27:24,702 INFO backend.segmentation: [JOB ca20946463e74f8a9be921cb5dc3580f] segments_meta saved (63 segments)
-2026-05-07 15:27:24,702 INFO backend.segmentation: [JOB ca20946463e74f8a9be921cb5dc3580f] done mask_count=63
-2026-05-07 15:27:24,702 INFO backend.segmentation: [UPLOAD_BG] DONE 162.428s at 2026-05-07T21:27:24.702523+00:00
-2026-05-07 15:27:24,702 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:27:41,959 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:27:41.959810+00:00
-2026-05-07 15:27:42,278 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.05, h_ratio=416.39)
-2026-05-07 15:27:42,305 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:27:42,814 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.854s at 2026-05-07T21:27:42.814627+00:00
-2026-05-07 15:27:46,763 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:27:46.763830+00:00
-2026-05-07 15:27:47,166 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:27:47,378 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.614s at 2026-05-07T21:27:47.378508+00:00
-2026-05-07 15:27:49,193 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:27:49.193540+00:00
-2026-05-07 15:27:49,513 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-07 15:27:49,532 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:27:49,729 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.536s at 2026-05-07T21:27:49.729431+00:00
-2026-05-07 15:27:51,249 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:27:51.249369+00:00
-2026-05-07 15:27:51,544 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:27:51,755 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.506s at 2026-05-07T21:27:51.755618+00:00
-2026-05-07 15:27:52,680 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:27:52.680739+00:00
-2026-05-07 15:27:52,986 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:27:53,211 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.531s at 2026-05-07T21:27:53.211475+00:00
-2026-05-07 15:27:54,203 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:27:54.203416+00:00
-2026-05-07 15:27:54,500 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:27:54,736 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.533s at 2026-05-07T21:27:54.736190+00:00
-2026-05-07 15:28:31,805 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:28:31.805147+00:00
-2026-05-07 15:28:32,098 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:28:32,338 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.534s at 2026-05-07T21:28:32.338930+00:00
-2026-05-07 15:28:42,559 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:28:42.559339+00:00
-2026-05-07 15:28:43,089 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:28:43,307 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.748s at 2026-05-07T21:28:43.307767+00:00
-2026-05-07 15:28:46,313 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:28:46.313349+00:00
-2026-05-07 15:28:46,831 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.74, h_ratio=1.19)
-2026-05-07 15:28:46,865 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:28:47,077 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.764s at 2026-05-07T21:28:47.077622+00:00
-2026-05-07 15:28:59,114 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:28:59.114208+00:00
-2026-05-07 15:28:59,643 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:28:59,870 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.756s at 2026-05-07T21:28:59.870175+00:00
-2026-05-07 15:29:02,857 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:29:02.857460+00:00
-2026-05-07 15:29:03,385 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:29:03,598 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.741s at 2026-05-07T21:29:03.598245+00:00
-2026-05-07 15:29:09,230 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:29:09.230242+00:00
-2026-05-07 15:29:09,812 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-07 15:29:09,836 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:29:10,063 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.832s at 2026-05-07T21:29:10.063265+00:00
-2026-05-07 15:30:08,609 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:30:08.608222+00:00
-2026-05-07 15:30:09,164 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-07 15:30:09,188 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:30:09,393 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.785s at 2026-05-07T21:30:09.393640+00:00
-2026-05-07 15:30:14,390 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:30:14.390221+00:00
-2026-05-07 15:30:14,951 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-07 15:30:14,970 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 15:30:15,192 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.803s at 2026-05-07T21:30:15.192554+00:00
-2026-05-07 15:30:40,712 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:30:40.712459+00:00
-2026-05-07 15:30:40,713 INFO backend.segmentation: [JOB 9d4215753f664bf08bfac6b433db1a36] preparing_image progress=12
-2026-05-07 15:30:40,791 INFO backend.segmentation: [JOB 9d4215753f664bf08bfac6b433db1a36] segmenting_with_sam2 progress=30 estimated_seconds=63.05024
-2026-05-07 15:30:40,792 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 15:30:43,195 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 15:30:45,588 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:30:45,733 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:30:48,162 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:30:48,173 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/d1c209e4-d368-4e81-8ce0-b7c8824ed437 "HTTP/1.1 200 OK"
-2026-05-07 15:30:50,534 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:30:53,316 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=d1c209e4-d368-4e81-8ce0-b7c8824ed437 "HTTP/1.1 200 OK"
-2026-05-07 15:33:13,981 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\3944faeeae589a5b426a0f9b9ce0280816fb839f02b7dd9ab2628c5aef775da2\image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:33:13,999 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=66
-2026-05-07 15:33:14,000 INFO backend.segmentation: [JOB 9d4215753f664bf08bfac6b433db1a36] saving_masks progress=92
-2026-05-07 15:33:14,323 INFO backend.segmentation: [JOB 9d4215753f664bf08bfac6b433db1a36] segments_meta saved (66 segments)
-2026-05-07 15:33:14,324 INFO backend.segmentation: [JOB 9d4215753f664bf08bfac6b433db1a36] done mask_count=66
-2026-05-07 15:33:14,325 INFO backend.segmentation: [UPLOAD_BG] DONE 153.613s at 2026-05-07T21:33:14.324926+00:00
-2026-05-07 15:33:14,325 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:33:20,991 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:33:20.991904+00:00
-2026-05-07 15:33:21,557 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.23, h_ratio=1.03)
-2026-05-07 15:33:21,587 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-07 15:33:21,856 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.865s at 2026-05-07T21:33:21.856475+00:00
-2026-05-07 15:33:23,187 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:33:23.187537+00:00
-2026-05-07 15:33:23,640 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.03, h_ratio=106.02)
-2026-05-07 15:33:23,660 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-07 15:33:23,887 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.700s at 2026-05-07T21:33:23.887323+00:00
-2026-05-07 15:33:28,666 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:33:28.666370+00:00
-2026-05-07 15:33:29,256 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.24, h_ratio=1.13)
-2026-05-07 15:33:29,278 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-07 15:33:29,514 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.849s at 2026-05-07T21:33:29.514966+00:00
-2026-05-07 15:33:35,559 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:33:35.559814+00:00
-2026-05-07 15:33:36,119 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.23, h_ratio=1.03)
-2026-05-07 15:33:36,156 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-07 15:33:36,369 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.810s at 2026-05-07T21:33:36.369980+00:00
-2026-05-07 15:33:41,348 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:33:41.348944+00:00
-2026-05-07 15:33:41,841 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.23, h_ratio=1.03)
-2026-05-07 15:33:41,873 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-07 15:33:42,143 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.796s at 2026-05-07T21:33:42.143571+00:00
-2026-05-07 15:34:05,661 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:34:05.661441+00:00
-2026-05-07 15:34:06,223 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.53, h_ratio=1.33)
-2026-05-07 15:34:06,245 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\venta-de-casas-modernas-residencial-los-robles.jpg
-2026-05-07 15:34:06,458 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.797s at 2026-05-07T21:34:06.458559+00:00
-2026-05-07 15:37:38,373 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:37:38.373999+00:00
-2026-05-07 15:37:38,375 INFO backend.segmentation: [JOB 24ce2b1d21234ddb8fbb35b45f4d8792] preparing_image progress=12
-2026-05-07 15:37:38,423 INFO backend.segmentation: [JOB 24ce2b1d21234ddb8fbb35b45f4d8792] segmenting_with_sam2 progress=30 estimated_seconds=94.01599999999999
-2026-05-07 15:37:38,423 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 15:37:40,841 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 15:37:43,152 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:37:43,304 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:37:45,640 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:37:45,645 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/96233e8c-fcb3-4e6e-a52b-43f262d4afc5 "HTTP/1.1 200 OK"
-2026-05-07 15:37:48,001 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:37:50,838 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=96233e8c-fcb3-4e6e-a52b-43f262d4afc5 "HTTP/1.1 200 OK"
-2026-05-07 15:39:30,039 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\56758f540e1c547de434b369fae158810fde033fe3650199c54eecf9fd68ac46\image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:39:30,055 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=58
-2026-05-07 15:39:30,056 INFO backend.segmentation: [JOB 24ce2b1d21234ddb8fbb35b45f4d8792] saving_masks progress=92
-2026-05-07 15:39:30,380 INFO backend.segmentation: [JOB 24ce2b1d21234ddb8fbb35b45f4d8792] segments_meta saved (58 segments)
-2026-05-07 15:39:30,381 INFO backend.segmentation: [JOB 24ce2b1d21234ddb8fbb35b45f4d8792] done mask_count=58
-2026-05-07 15:39:30,381 INFO backend.segmentation: [UPLOAD_BG] DONE 112.008s at 2026-05-07T21:39:30.381897+00:00
-2026-05-07 15:39:30,381 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:42:27,756 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:42:27.756524+00:00
-2026-05-07 15:42:28,316 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:42:28,714 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.958s at 2026-05-07T21:42:28.714486+00:00
-2026-05-07 15:42:31,110 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:42:31.110675+00:00
-2026-05-07 15:42:31,681 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:42:32,030 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.920s at 2026-05-07T21:42:32.030068+00:00
-2026-05-07 15:42:36,790 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:42:36.789013+00:00
-2026-05-07 15:42:37,354 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:42:37,723 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.934s at 2026-05-07T21:42:37.723785+00:00
-2026-05-07 15:42:43,821 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:42:43.821895+00:00
-2026-05-07 15:42:44,133 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:42:44,503 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.682s at 2026-05-07T21:42:44.503891+00:00
-2026-05-07 15:42:45,709 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:42:45.709851+00:00
-2026-05-07 15:42:46,014 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:42:46,365 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.656s at 2026-05-07T21:42:46.365851+00:00
-2026-05-07 15:42:48,755 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:42:48.755885+00:00
-2026-05-07 15:42:49,065 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:42:49,433 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.677s at 2026-05-07T21:42:49.433452+00:00
-2026-05-07 15:42:56,861 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:42:56.861868+00:00
-2026-05-07 15:42:57,289 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:42:57,689 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.827s at 2026-05-07T21:42:57.687938+00:00
-2026-05-07 15:47:02,637 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:47:02.637766+00:00
-2026-05-07 15:47:02,987 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:47:03,354 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.717s at 2026-05-07T21:47:03.354802+00:00
-2026-05-07 15:47:06,315 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:47:06.315345+00:00
-2026-05-07 15:47:06,692 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.31, h_ratio=1.04)
-2026-05-07 15:47:06,734 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 15:47:07,092 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.777s at 2026-05-07T21:47:07.092208+00:00
-2026-05-07 15:47:19,592 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:47:19.592166+00:00
-2026-05-07 15:47:19,593 INFO backend.segmentation: [JOB fe9309b4ebae4857a7b0ff42d9faf677] preparing_image progress=12
-2026-05-07 15:47:20,196 INFO backend.segmentation: [JOB fe9309b4ebae4857a7b0ff42d9faf677] segmenting_with_sam2 progress=30 estimated_seconds=57.674240000000005
-2026-05-07 15:47:20,197 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 15:47:22,577 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 15:47:24,974 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:47:25,112 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:47:27,430 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9d1507c0-f15b-4ce4-8a14-a75643934023 "HTTP/1.1 200 OK"
-2026-05-07 15:47:27,451 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:47:29,917 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:47:32,852 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9d1507c0-f15b-4ce4-8a14-a75643934023 "HTTP/1.1 200 OK"
-2026-05-07 15:49:56,285 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7fb2980e7537a93df201edb46c01cac70b34b0d407baf16d8c766c8326b688bb\image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:49:56,299 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=56
-2026-05-07 15:49:56,301 INFO backend.segmentation: [JOB fe9309b4ebae4857a7b0ff42d9faf677] saving_masks progress=92
-2026-05-07 15:49:56,485 INFO backend.segmentation: [JOB fe9309b4ebae4857a7b0ff42d9faf677] segments_meta saved (56 segments)
-2026-05-07 15:49:56,486 INFO backend.segmentation: [JOB fe9309b4ebae4857a7b0ff42d9faf677] done mask_count=56
-2026-05-07 15:49:56,486 INFO backend.segmentation: [UPLOAD_BG] DONE 156.895s at 2026-05-07T21:49:56.486476+00:00
-2026-05-07 15:49:56,486 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:50:23,300 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:23.300896+00:00
-2026-05-07 15:50:23,632 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.43)
-2026-05-07 15:50:23,649 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:23,860 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.560s at 2026-05-07T21:50:23.860900+00:00
-2026-05-07 15:50:25,390 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:25.390001+00:00
-2026-05-07 15:50:25,729 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.05, h_ratio=1.59)
-2026-05-07 15:50:25,748 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:25,961 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.573s at 2026-05-07T21:50:25.961503+00:00
-2026-05-07 15:50:29,067 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:29.067701+00:00
-2026-05-07 15:50:29,357 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:29,574 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.505s at 2026-05-07T21:50:29.573244+00:00
-2026-05-07 15:50:30,765 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:30.765933+00:00
-2026-05-07 15:50:31,113 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.43, h_ratio=1.00)
-2026-05-07 15:50:31,135 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:31,381 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.616s at 2026-05-07T21:50:31.381120+00:00
-2026-05-07 15:50:34,372 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:34.372354+00:00
-2026-05-07 15:50:34,702 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:34,919 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.547s at 2026-05-07T21:50:34.919402+00:00
-2026-05-07 15:50:38,283 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:38.283908+00:00
-2026-05-07 15:50:38,620 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:38,822 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.538s at 2026-05-07T21:50:38.821521+00:00
-2026-05-07 15:50:42,362 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:42.362356+00:00
-2026-05-07 15:50:42,752 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=81.06)
-2026-05-07 15:50:42,770 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:42,983 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.622s at 2026-05-07T21:50:42.983933+00:00
-2026-05-07 15:50:46,827 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:46.827950+00:00
-2026-05-07 15:50:47,260 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:47,509 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.681s at 2026-05-07T21:50:47.509694+00:00
-2026-05-07 15:50:51,671 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:50:51.671277+00:00
-2026-05-07 15:50:52,056 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\EB-UD3231 (1).jpg
-2026-05-07 15:50:52,261 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.591s at 2026-05-07T21:50:52.261800+00:00
-2026-05-07 15:51:01,177 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:51:01.177947+00:00
-2026-05-07 15:51:01,177 INFO backend.segmentation: [JOB 79a04736dcfa4abc8383a745c149b88c] preparing_image progress=12
-2026-05-07 15:51:01,277 INFO backend.segmentation: [JOB 79a04736dcfa4abc8383a745c149b88c] segmenting_with_sam2 progress=30 estimated_seconds=71.65183999999999
-2026-05-07 15:51:01,279 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 15:51:03,724 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 15:51:06,105 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:51:06,299 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:51:08,531 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/1f6ec649-450c-4d10-a42f-a0714e8554c6 "HTTP/1.1 200 OK"
-2026-05-07 15:51:08,533 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:51:10,974 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:51:13,861 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=1f6ec649-450c-4d10-a42f-a0714e8554c6 "HTTP/1.1 200 OK"
-2026-05-07 15:53:32,035 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\9b2d1c318212280bd44f91bf2c3aa028767f3015780e04d1e67d456398adfe23\image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:53:32,051 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=55
-2026-05-07 15:53:32,051 INFO backend.segmentation: [JOB 79a04736dcfa4abc8383a745c149b88c] saving_masks progress=92
-2026-05-07 15:53:32,291 INFO backend.segmentation: [JOB 79a04736dcfa4abc8383a745c149b88c] segments_meta saved (55 segments)
-2026-05-07 15:53:32,291 INFO backend.segmentation: [JOB 79a04736dcfa4abc8383a745c149b88c] done mask_count=55
-2026-05-07 15:53:32,291 INFO backend.segmentation: [UPLOAD_BG] DONE 151.115s at 2026-05-07T21:53:32.291574+00:00
-2026-05-07 15:53:32,291 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:53:42,312 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:53:42.312363+00:00
-2026-05-07 15:53:42,838 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.04, h_ratio=1.36)
-2026-05-07 15:53:42,868 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\unnamed.jpg
-2026-05-07 15:53:43,124 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.812s at 2026-05-07T21:53:43.124323+00:00
-2026-05-07 15:53:45,407 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:53:45.407699+00:00
-2026-05-07 15:53:45,913 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\unnamed.jpg
-2026-05-07 15:53:46,160 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.752s at 2026-05-07T21:53:46.160544+00:00
-2026-05-07 15:53:51,917 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:53:51.917268+00:00
-2026-05-07 15:53:52,460 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.04, h_ratio=1.36)
-2026-05-07 15:53:52,504 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\unnamed.jpg
-2026-05-07 15:53:52,784 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.868s at 2026-05-07T21:53:52.784729+00:00
-2026-05-07 15:53:59,737 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:53:59.737940+00:00
-2026-05-07 15:54:00,303 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.26)
-2026-05-07 15:54:00,325 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\unnamed.jpg
-2026-05-07 15:54:00,581 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.843s at 2026-05-07T21:54:00.581113+00:00
-2026-05-07 15:54:07,204 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:54:07.204959+00:00
-2026-05-07 15:54:07,723 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.02 < 0.35, skip perspective)
-2026-05-07 15:54:07,755 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\unnamed.jpg
-2026-05-07 15:54:08,011 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.806s at 2026-05-07T21:54:08.011194+00:00
-2026-05-07 15:54:14,251 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:54:14.251503+00:00
-2026-05-07 15:54:14,586 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.02 < 0.35, skip perspective)
-2026-05-07 15:54:14,618 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\unnamed.jpg
-2026-05-07 15:54:14,893 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.642s at 2026-05-07T21:54:14.893824+00:00
-2026-05-07 15:54:20,951 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:54:20.951821+00:00
-2026-05-07 15:54:21,369 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.00, h_ratio=1.21)
-2026-05-07 15:54:21,394 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\unnamed.jpg
-2026-05-07 15:54:21,654 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.703s at 2026-05-07T21:54:21.654007+00:00
-2026-05-07 15:55:49,324 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:55:49.324991+00:00
-2026-05-07 15:55:49,325 INFO backend.segmentation: [JOB df4da3c76a584af9a84bfa05b6253222] preparing_image progress=12
-2026-05-07 15:55:49,407 INFO backend.segmentation: [JOB df4da3c76a584af9a84bfa05b6253222] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-07 15:55:49,407 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 15:55:51,777 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 15:55:54,163 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:55:54,303 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:55:56,641 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/ddc1fa5d-ad06-492d-be12-a7f5ee46894f "HTTP/1.1 200 OK"
-2026-05-07 15:55:56,647 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:55:59,061 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:56:01,950 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=ddc1fa5d-ad06-492d-be12-a7f5ee46894f "HTTP/1.1 200 OK"
-2026-05-07 15:58:10,784 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\63f35ee774073b13ee87a1d3c7e73d1d3b47b4183190f3b098b633273f464612\image.webp "HTTP/1.1 200 OK"
-2026-05-07 15:58:10,799 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=61
-2026-05-07 15:58:10,799 INFO backend.segmentation: [JOB df4da3c76a584af9a84bfa05b6253222] saving_masks progress=92
-2026-05-07 15:58:11,031 INFO backend.segmentation: [JOB df4da3c76a584af9a84bfa05b6253222] segments_meta saved (61 segments)
-2026-05-07 15:58:11,033 INFO backend.segmentation: [JOB df4da3c76a584af9a84bfa05b6253222] done mask_count=61
-2026-05-07 15:58:11,033 INFO backend.segmentation: [UPLOAD_BG] DONE 141.708s at 2026-05-07T21:58:11.033788+00:00
-2026-05-07 15:58:11,033 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 15:58:20,920 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:58:20.920319+00:00
-2026-05-07 15:58:21,375 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.23, h_ratio=1.07)
-2026-05-07 15:58:21,407 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:58:21,598 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.679s at 2026-05-07T21:58:21.598068+00:00
-2026-05-07 15:58:24,623 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:58:24.623163+00:00
-2026-05-07 15:58:25,169 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.23, h_ratio=1.07)
-2026-05-07 15:58:25,191 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:58:25,360 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.738s at 2026-05-07T21:58:25.360818+00:00
-2026-05-07 15:58:28,165 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:58:28.165635+00:00
-2026-05-07 15:58:28,661 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:58:28,843 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.678s at 2026-05-07T21:58:28.843020+00:00
-2026-05-07 15:58:32,464 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:58:32.464694+00:00
-2026-05-07 15:58:32,978 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.08, h_ratio=1.42)
-2026-05-07 15:58:32,994 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:58:33,161 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.696s at 2026-05-07T21:58:33.161634+00:00
-2026-05-07 15:58:38,273 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:58:38.273840+00:00
-2026-05-07 15:58:38,781 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.13, h_ratio=2.54)
-2026-05-07 15:58:38,796 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:58:39,000 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.726s at 2026-05-07T21:58:39.000222+00:00
-2026-05-07 15:58:46,330 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:58:46.330265+00:00
-2026-05-07 15:58:46,828 INFO backend.segmentation: [APPLY_TEXTURE] perspective floor tiling applied (trap=1.00)
-2026-05-07 15:58:46,842 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:58:47,013 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.682s at 2026-05-07T21:58:47.013199+00:00
-2026-05-07 15:58:50,609 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:58:50.609562+00:00
-2026-05-07 15:58:51,166 INFO backend.segmentation: [APPLY_TEXTURE] perspective floor tiling applied (trap=1.00)
-2026-05-07 15:58:51,183 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:58:51,361 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.752s at 2026-05-07T21:58:51.361385+00:00
-2026-05-07 15:58:55,441 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:58:55.441205+00:00
-2026-05-07 15:58:55,946 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:58:56,114 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.673s at 2026-05-07T21:58:56.113779+00:00
-2026-05-07 15:59:08,450 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T21:59:08.450556+00:00
-2026-05-07 15:59:08,975 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.23, h_ratio=1.07)
-2026-05-07 15:59:09,001 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 15:59:09,173 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.723s at 2026-05-07T21:59:09.173815+00:00
-2026-05-07 15:59:16,551 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T21:59:16.551116+00:00
-2026-05-07 15:59:16,552 INFO backend.segmentation: [JOB 08b23c3c64214b4aa800997fa64cd9a7] preparing_image progress=12
-2026-05-07 15:59:16,631 INFO backend.segmentation: [JOB 08b23c3c64214b4aa800997fa64cd9a7] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-07 15:59:16,631 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 15:59:18,993 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 15:59:21,337 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 15:59:21,485 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 15:59:23,779 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/c1c694f0-2678-4cce-a664-ce7657360059 "HTTP/1.1 200 OK"
-2026-05-07 15:59:23,799 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 15:59:26,196 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 15:59:29,114 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=c1c694f0-2678-4cce-a664-ce7657360059 "HTTP/1.1 200 OK"
-2026-05-07 16:01:40,463 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\3f4bbc5e6cf6ca3e1f300135e65cb8423907d8d2601a24cab61eaf4e68bb94d8\image.webp "HTTP/1.1 200 OK"
-2026-05-07 16:01:40,478 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=51
-2026-05-07 16:01:40,479 INFO backend.segmentation: [JOB 08b23c3c64214b4aa800997fa64cd9a7] saving_masks progress=92
-2026-05-07 16:01:40,648 INFO backend.segmentation: [JOB 08b23c3c64214b4aa800997fa64cd9a7] segments_meta saved (51 segments)
-2026-05-07 16:01:40,649 INFO backend.segmentation: [JOB 08b23c3c64214b4aa800997fa64cd9a7] done mask_count=51
-2026-05-07 16:01:40,649 INFO backend.segmentation: [UPLOAD_BG] DONE 144.098s at 2026-05-07T22:01:40.649441+00:00
-2026-05-07 16:01:40,649 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 16:04:16,992 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:04:16.992111+00:00
-2026-05-07 16:04:17,540 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 16:04:17,715 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.724s at 2026-05-07T22:04:17.715600+00:00
-2026-05-07 16:04:20,514 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:04:20.514659+00:00
-2026-05-07 16:04:21,019 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.03, h_ratio=1.38)
-2026-05-07 16:04:21,036 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 16:04:21,242 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.727s at 2026-05-07T22:04:21.242012+00:00
-2026-05-07 16:04:28,071 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:04:28.071982+00:00
-2026-05-07 16:04:28,407 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.30, h_ratio=1.35)
-2026-05-07 16:04:28,428 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 16:04:28,596 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.525s at 2026-05-07T22:04:28.596511+00:00
-2026-05-07 16:04:30,490 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:04:30.490530+00:00
-2026-05-07 16:04:30,813 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.02, h_ratio=1.81)
-2026-05-07 16:04:30,833 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 16:04:31,008 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.519s at 2026-05-07T22:04:31.008084+00:00
-2026-05-07 16:05:02,767 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:05:02.767829+00:00
-2026-05-07 16:05:03,251 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
-2026-05-07 16:05:03,405 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.636s at 2026-05-07T22:05:03.405079+00:00
-2026-05-07 16:05:43,990 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T22:05:43.990943+00:00
-2026-05-07 16:05:43,990 INFO backend.segmentation: [JOB 3e0cf02dd665435db0db0a0143215be8] preparing_image progress=12
-2026-05-07 16:05:44,067 INFO backend.segmentation: [JOB 3e0cf02dd665435db0db0a0143215be8] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-07 16:05:44,067 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 16:05:46,491 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 16:05:48,868 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 16:05:49,016 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 16:05:51,323 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/6f95fab4-a857-4501-89ac-ccbf7e0581ea "HTTP/1.1 200 OK"
-2026-05-07 16:05:51,327 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 16:05:53,691 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 16:05:56,691 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=6f95fab4-a857-4501-89ac-ccbf7e0581ea "HTTP/1.1 200 OK"
-2026-05-07 16:08:09,268 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\63f35ee774073b13ee87a1d3c7e73d1d3b47b4183190f3b098b633273f464612\image.webp "HTTP/1.1 200 OK"
-2026-05-07 16:08:09,288 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=61
-2026-05-07 16:08:09,289 INFO backend.segmentation: [JOB 3e0cf02dd665435db0db0a0143215be8] saving_masks progress=92
-2026-05-07 16:08:09,486 INFO backend.segmentation: [JOB 3e0cf02dd665435db0db0a0143215be8] segments_meta saved (61 segments)
-2026-05-07 16:08:09,486 INFO backend.segmentation: [JOB 3e0cf02dd665435db0db0a0143215be8] done mask_count=61
-2026-05-07 16:08:09,488 INFO backend.segmentation: [UPLOAD_BG] DONE 145.497s at 2026-05-07T22:08:09.488380+00:00
-2026-05-07 16:08:09,488 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 16:22:47,224 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T22:22:47.224087+00:00
-2026-05-07 16:22:47,225 INFO backend.segmentation: [JOB bc86ad310222406a8ffacc5db249c183] preparing_image progress=12
-2026-05-07 16:22:47,297 INFO backend.segmentation: [JOB bc86ad310222406a8ffacc5db249c183] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 16:22:47,298 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 16:22:49,799 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 16:22:52,184 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 16:22:52,330 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 16:22:54,605 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/3d5ff637-214a-47c4-8a4f-d64d884b7a8b "HTTP/1.1 200 OK"
-2026-05-07 16:22:54,640 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 16:22:57,021 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 16:23:00,162 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=3d5ff637-214a-47c4-8a4f-d64d884b7a8b "HTTP/1.1 200 OK"
-2026-05-07 16:25:15,470 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\e9e23a4c03e9b88d2db6cb764c2778b1091e1c8b97c256c28501ff9297140221\image.webp "HTTP/1.1 200 OK"
-2026-05-07 16:25:15,487 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-07 16:25:15,487 INFO backend.segmentation: [JOB bc86ad310222406a8ffacc5db249c183] saving_masks progress=92
-2026-05-07 16:25:15,707 INFO backend.segmentation: [JOB bc86ad310222406a8ffacc5db249c183] segments_meta saved (63 segments)
-2026-05-07 16:25:15,708 INFO backend.segmentation: [JOB bc86ad310222406a8ffacc5db249c183] done mask_count=63
-2026-05-07 16:25:15,708 INFO backend.segmentation: [UPLOAD_BG] DONE 148.483s at 2026-05-07T22:25:15.708008+00:00
-2026-05-07 16:25:15,708 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 16:29:50,418 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T22:29:50.418894+00:00
-2026-05-07 16:29:50,418 INFO backend.segmentation: [JOB ddc21cbf4f774a4590e387679154a1d1] preparing_image progress=12
-2026-05-07 16:29:50,498 INFO backend.segmentation: [JOB ddc21cbf4f774a4590e387679154a1d1] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 16:29:50,500 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 16:29:52,926 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 16:29:55,311 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 16:29:55,457 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 16:29:57,773 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/c79c4e3d-25f5-4e6a-a4ba-45e7493b7b23 "HTTP/1.1 200 OK"
-2026-05-07 16:29:57,774 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 16:30:00,168 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 16:30:03,061 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=c79c4e3d-25f5-4e6a-a4ba-45e7493b7b23 "HTTP/1.1 200 OK"
-2026-05-07 16:32:17,053 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\e9e23a4c03e9b88d2db6cb764c2778b1091e1c8b97c256c28501ff9297140221\image.webp "HTTP/1.1 200 OK"
-2026-05-07 16:32:17,071 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-07 16:32:17,071 INFO backend.segmentation: [JOB ddc21cbf4f774a4590e387679154a1d1] saving_masks progress=92
-2026-05-07 16:32:17,286 INFO backend.segmentation: [JOB ddc21cbf4f774a4590e387679154a1d1] segments_meta saved (63 segments)
-2026-05-07 16:32:17,286 INFO backend.segmentation: [JOB ddc21cbf4f774a4590e387679154a1d1] done mask_count=63
-2026-05-07 16:32:17,288 INFO backend.segmentation: [UPLOAD_BG] DONE 146.869s at 2026-05-07T22:32:17.288291+00:00
-2026-05-07 16:32:17,288 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 16:32:41,697 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:32:41.697454+00:00
-2026-05-07 16:32:42,204 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 16:32:42,424 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.726s at 2026-05-07T22:32:42.424111+00:00
-2026-05-07 16:33:01,624 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T22:33:01.624117+00:00
-2026-05-07 16:33:01,624 INFO backend.segmentation: [JOB e3808e0cd3a54671be6ce77b16600d2d] preparing_image progress=12
-2026-05-07 16:33:01,697 INFO backend.segmentation: [JOB e3808e0cd3a54671be6ce77b16600d2d] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 16:33:01,698 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 16:33:04,132 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 16:33:06,530 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 16:33:06,692 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 16:33:08,991 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/78cd91de-4ac8-417d-a699-df5ceae4592f "HTTP/1.1 200 OK"
-2026-05-07 16:33:08,994 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 16:33:11,414 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 16:33:14,289 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=78cd91de-4ac8-417d-a699-df5ceae4592f "HTTP/1.1 200 OK"
-2026-05-07 16:35:33,030 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\e9e23a4c03e9b88d2db6cb764c2778b1091e1c8b97c256c28501ff9297140221\image.webp "HTTP/1.1 200 OK"
-2026-05-07 16:35:33,049 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-07 16:35:33,049 INFO backend.segmentation: [JOB e3808e0cd3a54671be6ce77b16600d2d] saving_masks progress=92
-2026-05-07 16:35:33,274 INFO backend.segmentation: [JOB e3808e0cd3a54671be6ce77b16600d2d] segments_meta saved (63 segments)
-2026-05-07 16:35:33,275 INFO backend.segmentation: [JOB e3808e0cd3a54671be6ce77b16600d2d] done mask_count=63
-2026-05-07 16:35:33,276 INFO backend.segmentation: [UPLOAD_BG] DONE 151.652s at 2026-05-07T22:35:33.276280+00:00
-2026-05-07 16:35:33,276 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 16:36:09,236 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:36:09.236174+00:00
-2026-05-07 16:36:09,540 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.59, h_ratio=1.44)
-2026-05-07 16:36:09,562 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 16:36:09,777 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.540s at 2026-05-07T22:36:09.777110+00:00
-2026-05-07 16:36:15,985 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:36:15.985071+00:00
-2026-05-07 16:36:16,483 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.16, h_ratio=1.26)
-2026-05-07 16:36:16,504 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 16:36:16,716 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.731s at 2026-05-07T22:36:16.716050+00:00
-2026-05-07 16:36:25,017 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:36:25.017619+00:00
-2026-05-07 16:36:25,564 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.03, h_ratio=1.37)
-2026-05-07 16:36:25,587 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 16:36:25,803 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.786s at 2026-05-07T22:36:25.803112+00:00
-2026-05-07 16:36:26,817 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:36:26.817271+00:00
-2026-05-07 16:36:27,352 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 16:36:27,584 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.767s at 2026-05-07T22:36:27.584739+00:00
-2026-05-07 16:36:28,334 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:36:28.334300+00:00
-2026-05-07 16:36:28,857 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 16:36:29,081 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.747s at 2026-05-07T22:36:29.081102+00:00
-2026-05-07 16:36:32,240 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:36:32.240623+00:00
-2026-05-07 16:36:32,772 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 16:36:33,003 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.763s at 2026-05-07T22:36:33.003855+00:00
-2026-05-07 16:40:31,573 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T22:40:31.573485+00:00
-2026-05-07 16:40:31,573 INFO backend.segmentation: [JOB abe6fcd597e44e188de85ec16c828d4f] preparing_image progress=12
-2026-05-07 16:40:31,619 INFO backend.segmentation: [JOB abe6fcd597e44e188de85ec16c828d4f] segmenting_with_sam2 progress=30 estimated_seconds=94.01599999999999
-2026-05-07 16:40:31,620 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 16:40:34,052 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 16:40:36,278 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 16:40:36,412 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 16:40:38,556 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e3bbcd8a-d009-4eb7-b2ef-0318dd7f287c "HTTP/1.1 200 OK"
-2026-05-07 16:40:38,575 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 16:40:40,832 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 16:40:43,079 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e3bbcd8a-d009-4eb7-b2ef-0318dd7f287c "HTTP/1.1 200 OK"
-2026-05-07 16:42:01,159 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\56758f540e1c547de434b369fae158810fde033fe3650199c54eecf9fd68ac46\image.webp "HTTP/1.1 200 OK"
-2026-05-07 16:42:01,173 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=58
-2026-05-07 16:42:01,174 INFO backend.segmentation: [JOB abe6fcd597e44e188de85ec16c828d4f] saving_masks progress=92
-2026-05-07 16:42:01,396 INFO backend.segmentation: [JOB abe6fcd597e44e188de85ec16c828d4f] segments_meta saved (58 segments)
-2026-05-07 16:42:01,397 INFO backend.segmentation: [JOB abe6fcd597e44e188de85ec16c828d4f] done mask_count=58
-2026-05-07 16:42:01,397 INFO backend.segmentation: [UPLOAD_BG] DONE 89.824s at 2026-05-07T22:42:01.397333+00:00
-2026-05-07 16:42:01,397 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 16:43:02,036 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T22:43:02.036847+00:00
-2026-05-07 16:43:02,036 INFO backend.segmentation: [JOB 98668f875a5a491a9e24d80f6c5877f7] preparing_image progress=12
-2026-05-07 16:43:02,378 INFO backend.segmentation: [JOB 98668f875a5a491a9e24d80f6c5877f7] segmenting_with_sam2 progress=30 estimated_seconds=105.8432
-2026-05-07 16:43:02,380 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 16:43:04,773 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 16:43:07,148 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 16:43:07,281 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 16:43:09,603 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/a89250d1-ac0d-45ef-9bdc-7f28bdbd5c74 "HTTP/1.1 200 OK"
-2026-05-07 16:43:09,607 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 16:43:12,018 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 16:43:14,837 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=a89250d1-ac0d-45ef-9bdc-7f28bdbd5c74 "HTTP/1.1 200 OK"
-2026-05-07 16:45:52,678 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\fe7e296f49e3953b396fc8aeb7f4885b83ba4201a8d3f8d451ff0339d7391c52\image.webp "HTTP/1.1 200 OK"
-2026-05-07 16:45:52,698 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=74
-2026-05-07 16:45:52,698 INFO backend.segmentation: [JOB 98668f875a5a491a9e24d80f6c5877f7] saving_masks progress=92
-2026-05-07 16:45:53,143 INFO backend.segmentation: [JOB 98668f875a5a491a9e24d80f6c5877f7] segments_meta saved (74 segments)
-2026-05-07 16:45:53,143 INFO backend.segmentation: [JOB 98668f875a5a491a9e24d80f6c5877f7] done mask_count=74
-2026-05-07 16:45:53,144 INFO backend.segmentation: [UPLOAD_BG] DONE 171.106s at 2026-05-07T22:45:53.144055+00:00
-2026-05-07 16:45:53,144 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 16:46:04,090 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:46:04.090988+00:00
-2026-05-07 16:46:04,428 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.31 < 0.35, skip perspective)
-2026-05-07 16:46:04,482 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 16:46:04,894 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.803s at 2026-05-07T22:46:04.893619+00:00
-2026-05-07 16:46:13,581 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:46:13.581681+00:00
-2026-05-07 16:46:13,926 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 16:46:14,330 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.749s at 2026-05-07T22:46:14.330751+00:00
-2026-05-07 16:46:19,978 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:46:19.978023+00:00
-2026-05-07 16:46:20,448 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.31 < 0.35, skip perspective)
-2026-05-07 16:46:20,501 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 16:46:20,917 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.939s at 2026-05-07T22:46:20.917957+00:00
-2026-05-07 16:46:24,322 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:46:24.322422+00:00
-2026-05-07 16:46:24,904 INFO backend.segmentation: [APPLY_TEXTURE] perspective floor tiling applied (trap=1.00)
-2026-05-07 16:46:24,949 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 16:46:25,362 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.040s at 2026-05-07T22:46:25.362160+00:00
-2026-05-07 16:46:29,955 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:46:29.955304+00:00
-2026-05-07 16:46:30,502 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.72, h_ratio=1.98)
-2026-05-07 16:46:30,549 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 16:46:30,987 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.033s at 2026-05-07T22:46:30.987573+00:00
-2026-05-07 16:46:38,234 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T22:46:38.234058+00:00
-2026-05-07 16:46:38,637 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.31 < 0.35, skip perspective)
-2026-05-07 16:46:38,690 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 16:46:39,101 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.867s at 2026-05-07T22:46:39.101314+00:00
-2026-05-07 17:01:04,655 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:01:04.655845+00:00
-2026-05-07 17:01:05,250 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.05, h_ratio=1.68)
-2026-05-07 17:01:05,308 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:01:05,726 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.071s at 2026-05-07T23:01:05.726857+00:00
-2026-05-07 17:19:38,903 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 17:19:38,930 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 17:20:05,519 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:05.519131+00:00
-2026-05-07 17:20:05,664 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.72, h_ratio=1.98)
-2026-05-07 17:20:05,718 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:06,288 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.770s at 2026-05-07T23:20:06.288369+00:00
-2026-05-07 17:20:10,885 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:10.885784+00:00
-2026-05-07 17:20:11,012 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.72, h_ratio=1.98)
-2026-05-07 17:20:11,057 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:11,494 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.609s at 2026-05-07T23:20:11.493854+00:00
-2026-05-07 17:20:16,040 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:16.040610+00:00
-2026-05-07 17:20:16,136 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:16,549 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.509s at 2026-05-07T23:20:16.549652+00:00
-2026-05-07 17:20:18,515 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:18.515915+00:00
-2026-05-07 17:20:18,600 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.31 < 0.35, skip perspective)
-2026-05-07 17:20:18,652 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:19,065 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.550s at 2026-05-07T23:20:19.065884+00:00
-2026-05-07 17:20:25,048 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:25.048663+00:00
-2026-05-07 17:20:25,199 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.17, h_ratio=1.48)
-2026-05-07 17:20:25,233 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:25,664 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.616s at 2026-05-07T23:20:25.664798+00:00
-2026-05-07 17:20:29,831 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:29.831966+00:00
-2026-05-07 17:20:29,986 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.17, h_ratio=1.48)
-2026-05-07 17:20:30,018 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:30,460 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.629s at 2026-05-07T23:20:30.460822+00:00
-2026-05-07 17:20:31,763 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:31.763484+00:00
-2026-05-07 17:20:31,886 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.72, h_ratio=1.98)
-2026-05-07 17:20:31,929 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:32,354 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.591s at 2026-05-07T23:20:32.354006+00:00
-2026-05-07 17:20:33,945 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:33.945098+00:00
-2026-05-07 17:20:34,040 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:34,468 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.523s at 2026-05-07T23:20:34.468881+00:00
-2026-05-07 17:20:35,606 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:20:35.606548+00:00
-2026-05-07 17:20:35,728 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.72, h_ratio=1.98)
-2026-05-07 17:20:35,776 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:20:36,186 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.580s at 2026-05-07T23:20:36.186410+00:00
-2026-05-07 17:21:19,858 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:21:19.858037+00:00
-2026-05-07 17:21:19,984 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.72, h_ratio=1.98)
-2026-05-07 17:21:20,031 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm gris.jpg
-2026-05-07 17:21:20,492 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.633s at 2026-05-07T23:21:20.492075+00:00
-2026-05-07 17:23:17,203 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 17:23:17,220 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 17:34:54,520 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 17:34:54,537 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 17:34:55,382 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 17:34:55,400 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 17:35:53,725 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd21d97b5fb8b402d113c5"}, "remainingTimeMS": 30}
-2026-05-07 17:38:06,088 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T23:38:06.088546+00:00
-2026-05-07 17:38:06,088 INFO backend.segmentation: [JOB 1c11e34d2f414d9e9328b1801e210f5a] preparing_image progress=12
-2026-05-07 17:38:06,177 INFO backend.segmentation: [JOB 1c11e34d2f414d9e9328b1801e210f5a] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-07 17:38:06,178 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 17:38:10,859 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 17:38:13,266 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 17:38:13,842 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 17:38:15,792 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9771f2ad-8cd2-4dbb-bf76-dbcaa54a9e8c "HTTP/1.1 200 OK"
-2026-05-07 17:38:15,799 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 17:38:18,175 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 17:38:21,015 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9771f2ad-8cd2-4dbb-bf76-dbcaa54a9e8c "HTTP/1.1 200 OK"
-2026-05-07 17:39:18,012 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\e9e23a4c03e9b88d2db6cb764c2778b1091e1c8b97c256c28501ff9297140221\image.webp "HTTP/1.1 200 OK"
-2026-05-07 17:39:18,026 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-07 17:39:18,026 INFO backend.segmentation: [JOB 1c11e34d2f414d9e9328b1801e210f5a] saving_masks progress=92
-2026-05-07 17:39:18,184 INFO backend.segmentation: [JOB 1c11e34d2f414d9e9328b1801e210f5a] segments_meta saved (63 segments)
-2026-05-07 17:39:18,184 INFO backend.segmentation: [JOB 1c11e34d2f414d9e9328b1801e210f5a] done mask_count=63
-2026-05-07 17:39:18,184 INFO backend.segmentation: [UPLOAD_BG] DONE 72.097s at 2026-05-07T23:39:18.184964+00:00
-2026-05-07 17:39:18,184 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 17:41:23,776 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:23.776644+00:00
-2026-05-07 17:41:24,331 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-07 17:41:24,357 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:24,711 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.935s at 2026-05-07T23:41:24.711180+00:00
-2026-05-07 17:41:27,452 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:27.452983+00:00
-2026-05-07 17:41:27,541 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-07 17:41:27,564 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:27,800 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.348s at 2026-05-07T23:41:27.800164+00:00
-2026-05-07 17:41:30,962 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:30.962686+00:00
-2026-05-07 17:41:31,048 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-07 17:41:31,065 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:31,301 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.338s at 2026-05-07T23:41:31.301380+00:00
-2026-05-07 17:41:33,842 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:33.842810+00:00
-2026-05-07 17:41:33,933 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-07 17:41:33,960 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:34,187 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.345s at 2026-05-07T23:41:34.187626+00:00
-2026-05-07 17:41:37,885 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:37.885854+00:00
-2026-05-07 17:41:38,391 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:38,616 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.730s at 2026-05-07T23:41:38.616620+00:00
-2026-05-07 17:41:41,951 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:41.951324+00:00
-2026-05-07 17:41:42,020 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:42,238 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.287s at 2026-05-07T23:41:42.238675+00:00
-2026-05-07 17:41:44,128 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:44.128975+00:00
-2026-05-07 17:41:44,212 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-07 17:41:44,225 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:44,443 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.314s at 2026-05-07T23:41:44.443647+00:00
-2026-05-07 17:41:53,244 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:53.244718+00:00
-2026-05-07 17:41:53,307 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:53,534 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.290s at 2026-05-07T23:41:53.534468+00:00
-2026-05-07 17:41:56,242 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:41:56.242076+00:00
-2026-05-07 17:41:56,315 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 17:41:56,547 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.305s at 2026-05-07T23:41:56.547354+00:00
-2026-05-07 17:42:12,026 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T23:42:12.026351+00:00
-2026-05-07 17:42:12,027 INFO backend.segmentation: [JOB 31ffcc550acc49ebaef7694d019e4738] preparing_image progress=12
-2026-05-07 17:42:12,087 INFO backend.segmentation: [JOB 31ffcc550acc49ebaef7694d019e4738] segmenting_with_sam2 progress=30 estimated_seconds=94.01599999999999
-2026-05-07 17:42:12,087 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-07 17:42:14,504 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-07 17:42:16,891 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-07 17:42:17,033 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-07 17:42:19,359 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-07 17:42:19,359 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/5caf9962-b05a-4b4b-9ff5-a4e57abaa4d1 "HTTP/1.1 200 OK"
-2026-05-07 17:42:21,816 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-07 17:42:24,647 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=5caf9962-b05a-4b4b-9ff5-a4e57abaa4d1 "HTTP/1.1 200 OK"
-2026-05-07 17:44:44,214 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\56758f540e1c547de434b369fae158810fde033fe3650199c54eecf9fd68ac46\image.webp "HTTP/1.1 200 OK"
-2026-05-07 17:44:44,229 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=58
-2026-05-07 17:44:44,229 INFO backend.segmentation: [JOB 31ffcc550acc49ebaef7694d019e4738] saving_masks progress=92
-2026-05-07 17:44:44,558 INFO backend.segmentation: [JOB 31ffcc550acc49ebaef7694d019e4738] segments_meta saved (58 segments)
-2026-05-07 17:44:44,559 INFO backend.segmentation: [JOB 31ffcc550acc49ebaef7694d019e4738] done mask_count=58
-2026-05-07 17:44:44,559 INFO backend.segmentation: [UPLOAD_BG] DONE 152.534s at 2026-05-07T23:44:44.559631+00:00
-2026-05-07 17:44:44,559 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-07 17:46:08,455 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:08.455801+00:00
-2026-05-07 17:46:08,553 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:08,947 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.492s at 2026-05-07T23:46:08.947932+00:00
-2026-05-07 17:46:17,471 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:17.471758+00:00
-2026-05-07 17:46:17,573 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:17,959 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.487s at 2026-05-07T23:46:17.959003+00:00
-2026-05-07 17:46:28,129 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:28.129424+00:00
-2026-05-07 17:46:28,200 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:28,582 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.453s at 2026-05-07T23:46:28.582760+00:00
-2026-05-07 17:46:33,212 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:33.212302+00:00
-2026-05-07 17:46:33,309 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:33,672 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.460s at 2026-05-07T23:46:33.672645+00:00
-2026-05-07 17:46:35,529 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:35.528619+00:00
-2026-05-07 17:46:35,619 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:35,998 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.469s at 2026-05-07T23:46:35.998355+00:00
-2026-05-07 17:46:44,349 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:44.349770+00:00
-2026-05-07 17:46:44,480 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.47, h_ratio=1.33)
-2026-05-07 17:46:44,518 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:44,874 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.525s at 2026-05-07T23:46:44.874683+00:00
-2026-05-07 17:46:47,684 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:47.684050+00:00
-2026-05-07 17:46:47,763 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:48,178 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.495s at 2026-05-07T23:46:48.178702+00:00
-2026-05-07 17:46:49,167 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:49.167867+00:00
-2026-05-07 17:46:49,306 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.01, h_ratio=1.21)
-2026-05-07 17:46:49,338 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:49,729 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.561s at 2026-05-07T23:46:49.729581+00:00
-2026-05-07 17:46:51,803 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-07T23:46:51.803036+00:00
-2026-05-07 17:46:51,895 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 17:46:52,269 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.466s at 2026-05-07T23:46:52.269260+00:00
-2026-05-07 18:03:29,289 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 18:03:29,305 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 18:03:30,206 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 18:03:30,226 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 18:03:32,234 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd28548290d5e8dcce656f"}, "remainingTimeMS": 30}
-2026-05-07 18:03:33,344 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd28558290d5e8dcce6570"}, "remainingTimeMS": 30}
-2026-05-07 18:06:07,885 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 18:06:07,912 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 18:06:08,821 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 18:06:08,841 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 18:06:09,044 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd28f1cb744fdfd968df4f"}, "remainingTimeMS": 30}
-2026-05-07 18:06:09,046 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd28f1cb744fdfd968df4f"}, "remainingTimeMS": 30}
-2026-05-07 18:06:17,672 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T00:06:17.672406+00:00
-2026-05-07 18:06:17,774 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-07 18:06:18,277 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.606s at 2026-05-08T00:06:18.277654+00:00
-2026-05-07 18:06:29,233 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd2905cb744fdfd968df50"}, "remainingTimeMS": 30}
-2026-05-07 18:06:29,234 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd2905cb744fdfd968df50"}, "remainingTimeMS": 30}
-2026-05-07 18:06:38,021 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T00:06:38.021739+00:00
-2026-05-07 18:06:38,533 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-07 18:06:38,551 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 18:06:38,763 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.741s at 2026-05-08T00:06:38.763203+00:00
-2026-05-07 18:06:41,375 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T00:06:41.375987+00:00
-2026-05-07 18:06:41,901 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-07 18:06:41,921 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 18:06:42,135 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.760s at 2026-05-08T00:06:42.135731+00:00
-2026-05-07 18:17:10,342 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T00:17:10.342893+00:00
-2026-05-07 18:17:10,422 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-07 18:17:10,446 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 18:17:10,653 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.310s at 2026-05-08T00:17:10.653040+00:00
-2026-05-07 18:22:51,279 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 18:22:51,299 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 18:22:52,229 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-07 18:22:52,245 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-07 18:22:52,461 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd2cdc61ddd2197e4f4ad3"}, "remainingTimeMS": 30}
-2026-05-07 18:22:52,461 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd2cdc61ddd2197e4f4ad3"}, "remainingTimeMS": 30}
-2026-05-07 18:23:18,919 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T00:23:18.919571+00:00
-2026-05-07 18:23:19,016 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-07 18:23:19,038 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-07 18:23:19,455 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.535s at 2026-05-08T00:23:19.455089+00:00
-2026-05-07 18:23:32,434 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd2d0461ddd2197e4f4ad4"}, "remainingTimeMS": 30}
-2026-05-07 18:23:32,438 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fd2d0461ddd2197e4f4ad4"}, "remainingTimeMS": 30}
-2026-05-08 08:43:50,985 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-08 08:43:51,012 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-08 08:51:57,553 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-08 08:51:57,570 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-08 08:52:05,523 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fdf8956fe8a54546e7c788"}, "remainingTimeMS": 30}
-2026-05-08 08:52:28,781 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-08T14:52:28.781286+00:00
-2026-05-08 08:52:28,783 INFO backend.segmentation: [JOB c4b00bfba3cd41d8a99b995eb5a3f820] preparing_image progress=12
-2026-05-08 08:52:28,924 INFO backend.segmentation: [JOB c4b00bfba3cd41d8a99b995eb5a3f820] segmenting_with_sam2 progress=30 estimated_seconds=58.39104
-2026-05-08 08:52:28,925 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-08 08:52:31,787 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-08 08:52:32,342 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-08 08:52:32,963 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-08 08:52:33,084 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/10657327-6236-4afa-91e1-25f259cc9a15 "HTTP/1.1 200 OK"
-2026-05-08 08:52:33,241 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-08 08:52:33,773 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-08 08:52:34,439 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=10657327-6236-4afa-91e1-25f259cc9a15 "HTTP/1.1 200 OK"
-2026-05-08 08:52:53,788 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/1ee1c9088fcbba7f467623e6851741770894d9f669f8b560de748311e8fd868e/image.webp "HTTP/1.1 200 OK"
-2026-05-08 08:52:53,901 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=63
-2026-05-08 08:52:53,901 INFO backend.segmentation: [JOB c4b00bfba3cd41d8a99b995eb5a3f820] saving_masks progress=92
-2026-05-08 08:52:54,078 INFO backend.segmentation: [JOB c4b00bfba3cd41d8a99b995eb5a3f820] segments_meta saved (63 segments)
-2026-05-08 08:52:54,078 INFO backend.segmentation: [JOB c4b00bfba3cd41d8a99b995eb5a3f820] done mask_count=63
-2026-05-08 08:52:54,079 INFO backend.segmentation: [UPLOAD_BG] DONE 25.297s at 2026-05-08T14:52:54.079206+00:00
-2026-05-08 08:52:54,079 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-08 08:52:56,515 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fdf8c86fe8a54546e7c789"}, "remainingTimeMS": 30}
-2026-05-08 08:53:03,328 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T14:53:03.328974+00:00
-2026-05-08 08:53:03,423 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-08 08:53:03,443 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 08:53:03,763 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.435s at 2026-05-08T14:53:03.763882+00:00
-2026-05-08 08:54:39,084 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T14:54:39.084466+00:00
-2026-05-08 08:54:39,183 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-08 08:54:39,211 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 08:54:39,457 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.373s at 2026-05-08T14:54:39.457395+00:00
-2026-05-08 08:59:40,007 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T14:59:40.007652+00:00
-2026-05-08 08:59:40,151 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-08 08:59:40,169 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 08:59:40,385 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.378s at 2026-05-08T14:59:40.385462+00:00
-2026-05-08 08:59:42,685 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T14:59:42.685637+00:00
-2026-05-08 08:59:42,813 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-08 08:59:42,832 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 08:59:43,046 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.361s at 2026-05-08T14:59:43.046868+00:00
-2026-05-08 08:59:49,536 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-08 08:59:49,552 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-08 08:59:50,331 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-08 08:59:50,348 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-08 09:00:00,500 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:00:00.500104+00:00
-2026-05-08 09:00:00,618 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-08 09:00:00,637 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:00:00,990 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.490s at 2026-05-08T15:00:00.990494+00:00
-2026-05-08 09:00:03,599 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:00:03.599883+00:00
-2026-05-08 09:00:03,681 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:00:03,924 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.324s at 2026-05-08T15:00:03.924300+00:00
-2026-05-08 09:00:06,073 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:00:06.073364+00:00
-2026-05-08 09:00:06,149 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:00:06,389 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.317s at 2026-05-08T15:00:06.389848+00:00
-2026-05-08 09:00:08,614 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:00:08.614656+00:00
-2026-05-08 09:00:08,694 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:00:08,933 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.319s at 2026-05-08T15:00:08.933579+00:00
-2026-05-08 09:00:15,087 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:00:15.087928+00:00
-2026-05-08 09:00:15,193 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-08 09:00:15,214 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:00:15,452 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.364s at 2026-05-08T15:00:15.452128+00:00
-2026-05-08 09:00:19,768 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:00:19.768251+00:00
-2026-05-08 09:00:20,270 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-08 09:00:20,289 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:00:20,508 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.740s at 2026-05-08T15:00:20.508968+00:00
-2026-05-08 09:01:38,338 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:01:38.338166+00:00
-2026-05-08 09:01:38,895 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=1.39, h_ratio=1.19)
-2026-05-08 09:01:38,915 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:01:39,112 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.774s at 2026-05-08T15:01:39.112500+00:00
-2026-05-08 09:01:42,636 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:01:42.636107+00:00
-2026-05-08 09:01:42,973 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-08 09:01:42,992 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:01:43,212 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.577s at 2026-05-08T15:01:43.212843+00:00
-2026-05-08 09:01:45,698 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:01:45.698783+00:00
-2026-05-08 09:01:46,444 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-08 09:01:46,465 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:01:46,680 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.982s at 2026-05-08T15:01:46.680378+00:00
-2026-05-08 09:01:50,327 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:01:50.326916+00:00
-2026-05-08 09:01:50,647 INFO backend.segmentation: [APPLY_TEXTURE] perspective wall tiling applied (w_ratio=2.27, h_ratio=1.02)
-2026-05-08 09:01:50,666 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:01:50,880 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.552s at 2026-05-08T15:01:50.879093+00:00
-2026-05-08 09:01:57,091 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-08 09:01:57,117 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-08 09:01:57,294 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:01:57.294276+00:00
-2026-05-08 09:01:57,340 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:01:57,569 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.275s at 2026-05-08T15:01:57.569889+00:00
-2026-05-08 09:02:01,866 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:02:01.866951+00:00
-2026-05-08 09:02:01,933 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:02:02,153 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.287s at 2026-05-08T15:02:02.153188+00:00
-2026-05-08 09:02:04,075 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:02:04.075842+00:00
-2026-05-08 09:02:04,140 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:02:04,356 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.280s at 2026-05-08T15:02:04.356528+00:00
-2026-05-08 09:02:07,755 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:02:07.755321+00:00
-2026-05-08 09:02:07,822 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:02:08,037 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.282s at 2026-05-08T15:02:08.037106+00:00
-2026-05-08 09:02:11,723 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:02:11.723542+00:00
-2026-05-08 09:02:11,786 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:02:12,003 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.280s at 2026-05-08T15:02:12.003104+00:00
-2026-05-08 09:02:13,461 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:02:13.461067+00:00
-2026-05-08 09:02:13,526 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:02:13,743 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.283s at 2026-05-08T15:02:13.743819+00:00
-2026-05-08 09:02:17,645 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-08T15:02:17.645808+00:00
-2026-05-08 09:02:17,709 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\WhatsApp Image 2026-05-06 at 18.47.21.jpg
-2026-05-08 09:02:17,928 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.283s at 2026-05-08T15:02:17.928622+00:00
-2026-05-08 09:02:22,278 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fdfafe6c3fdb5646f67bd7"}, "remainingTimeMS": 30}
-2026-05-10 23:50:21,193 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-10 23:50:21,209 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-10 23:52:32,876 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a016ea02da1a3ba929adb9d"}, "remainingTimeMS": 30}
-2026-05-10 23:52:36,476 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a016ea42da1a3ba929adb9e"}, "remainingTimeMS": 30}
-2026-05-10 23:55:43,460 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-10 23:55:43,478 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-10 23:55:50,353 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T05:55:50.353980+00:00
-2026-05-10 23:55:50,353 INFO backend.segmentation: [JOB 50532667d23b42dc9499151b792fc9be] preparing_image progress=12
-2026-05-10 23:55:50,403 INFO backend.segmentation: [JOB 50532667d23b42dc9499151b792fc9be] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-10 23:55:50,404 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-10 23:55:54,216 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-10 23:55:56,411 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-10 23:55:56,414 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-10 23:55:56,414 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-10 23:55:57,205 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-10 23:55:58,767 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/82464de0-3009-48e0-8256-dabefa0f9b77 "HTTP/1.1 200 OK"
-2026-05-10 23:58:37,808 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-10 23:58:38,440 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-10 23:58:38,988 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-10 23:58:39,041 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/19141e4f-3688-4e28-b4dd-a1f90267278f "HTTP/1.1 200 OK"
-2026-05-10 23:58:39,207 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-10 23:58:39,935 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-10 23:58:40,471 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/data?session_hash=19141e4f-3688-4e28-b4dd-a1f90267278f "HTTP/1.1 200 OK"
-2026-05-11 00:02:34,264 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0170fae955d66f478a478e"}, "remainingTimeMS": 30}
-2026-05-11 00:02:41,231 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/file=/tmp/gradio/6c61c4453525a0cc97a55213f8ab16e24157b02ad4d2cba459d14b95c79ac6ab/image.webp "HTTP/1.1 200 OK"
-2026-05-11 00:02:41,371 INFO services.gradio_client_service: Gradio Space segmentation: entorno=cpu motor=SAM Auto (CPU) mask_count=61
-2026-05-11 00:02:41,371 INFO backend.segmentation: [JOB 50532667d23b42dc9499151b792fc9be] saving_masks progress=92
-2026-05-11 00:02:41,545 INFO backend.segmentation: [JOB 50532667d23b42dc9499151b792fc9be] segments_meta saved (61 segments)
-2026-05-11 00:02:41,545 INFO backend.segmentation: [JOB 50532667d23b42dc9499151b792fc9be] done mask_count=61
-2026-05-11 00:02:41,545 INFO backend.segmentation: [UPLOAD_BG] DONE 411.192s at 2026-05-11T06:02:41.545306+00:00
-2026-05-11 00:02:41,545 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 00:05:57,228 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7861
-2026-05-11 00:05:57,248 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 00:06:01,186 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0171c9cf34de01f7f36598"}, "remainingTimeMS": 30}
-2026-05-11 00:06:11,507 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T06:06:11.507814+00:00
-2026-05-11 00:06:11,507 INFO backend.segmentation: [JOB 1f4f3f9e44d3493ea86190e1c30a9fdd] preparing_image progress=12
-2026-05-11 00:06:11,556 INFO backend.segmentation: [JOB 1f4f3f9e44d3493ea86190e1c30a9fdd] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 00:06:11,556 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7861
-2026-05-11 00:06:14,167 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 00:06:16,365 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 00:06:17,144 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 00:06:18,683 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/20b82a1d-db47-495c-b48f-4921056f7df8 "HTTP/1.1 200 OK"
-2026-05-11 00:06:18,685 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 00:06:20,907 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 00:06:23,133 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=20b82a1d-db47-495c-b48f-4921056f7df8 "HTTP/1.1 200 OK"
-2026-05-11 00:07:29,155 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\fdba6c817445c957bf57f0f37d255298685625d2847381414fb08306405b69d3\image.webp "HTTP/1.1 200 OK"
-2026-05-11 00:07:29,169 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=61
-2026-05-11 00:07:29,170 INFO backend.segmentation: [JOB 1f4f3f9e44d3493ea86190e1c30a9fdd] saving_masks progress=92
-2026-05-11 00:07:29,294 INFO backend.segmentation: [JOB 1f4f3f9e44d3493ea86190e1c30a9fdd] segments_meta saved (61 segments)
-2026-05-11 00:07:29,294 INFO backend.segmentation: [JOB 1f4f3f9e44d3493ea86190e1c30a9fdd] done mask_count=61
-2026-05-11 00:07:29,294 INFO backend.segmentation: [UPLOAD_BG] DONE 77.786s at 2026-05-11T06:07:29.294219+00:00
-2026-05-11 00:07:29,294 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 00:07:30,391 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a017222cf34de01f7f36599"}, "remainingTimeMS": 30}
-2026-05-11 00:08:14,893 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T06:08:14.893447+00:00
-2026-05-11 00:08:15,380 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 00:08:15,598 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.704s at 2026-05-11T06:08:15.598673+00:00
-2026-05-11 00:51:27,451 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7861
-2026-05-11 00:51:27,474 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 00:53:21,328 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a017ce16ec57028978ccf90"}, "remainingTimeMS": 30}
-2026-05-11 00:53:38,590 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T06:53:38.590375+00:00
-2026-05-11 00:53:38,591 INFO backend.segmentation: [JOB 8b7706cec4fb4c95b959cf35c8a37258] preparing_image progress=12
-2026-05-11 00:53:38,710 INFO backend.segmentation: [JOB 8b7706cec4fb4c95b959cf35c8a37258] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 00:53:38,711 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7861
-2026-05-11 00:53:42,759 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 00:53:44,976 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 00:53:45,852 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 00:53:47,365 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/1416991c-29e3-460c-b632-eb0401ae0d7b "HTTP/1.1 200 OK"
-2026-05-11 00:53:47,401 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 00:53:49,676 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 00:53:51,904 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=1416991c-29e3-460c-b632-eb0401ae0d7b "HTTP/1.1 200 OK"
-2026-05-11 00:54:57,193 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\fdba6c817445c957bf57f0f37d255298685625d2847381414fb08306405b69d3\image.webp "HTTP/1.1 200 OK"
-2026-05-11 00:54:57,211 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=61
-2026-05-11 00:54:57,211 INFO backend.segmentation: [JOB 8b7706cec4fb4c95b959cf35c8a37258] saving_masks progress=92
-2026-05-11 00:54:57,393 INFO backend.segmentation: [JOB 8b7706cec4fb4c95b959cf35c8a37258] segments_meta saved (61 segments)
-2026-05-11 00:54:57,393 INFO backend.segmentation: [JOB 8b7706cec4fb4c95b959cf35c8a37258] done mask_count=61
-2026-05-11 00:54:57,393 INFO backend.segmentation: [UPLOAD_BG] DONE 78.803s at 2026-05-11T06:54:57.393436+00:00
-2026-05-11 00:54:57,393 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 00:55:00,244 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a017d446ec57028978ccf91"}, "remainingTimeMS": 30}
-2026-05-11 00:59:39,555 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7861
-2026-05-11 00:59:39,579 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 00:59:40,470 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7861
-2026-05-11 00:59:40,489 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 00:59:40,500 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T06:59:40.500380+00:00
-2026-05-11 00:59:44,733 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 00:59:46,960 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 00:59:47,683 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 00:59:49,313 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/dfe3d93e-bb61-4ec9-a8f0-c028f671768d "HTTP/1.1 200 OK"
-2026-05-11 00:59:49,315 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 00:59:51,671 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 00:59:53,909 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=dfe3d93e-bb61-4ec9-a8f0-c028f671768d "HTTP/1.1 200 OK"
-2026-05-11 00:59:58,487 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a017e6eb594a05c6412d9b7"}, "remainingTimeMS": 30}
-2026-05-11 00:59:58,935 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a017e6eb594a05c6412d9b8"}, "remainingTimeMS": 30}
-2026-05-11 01:00:01,269 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:00:01.269120+00:00
-2026-05-11 01:00:06,217 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:00:06,576 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\6fccbecf855f58faeb9c353aa676bbc1217a2f78a3531d0266304a8da20e5470\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:00:06,583 ERROR backend.segmentation: Failed to save rendered image from Gradio Space
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\texture_service.py", line 727, in apply_local_texture_sync
- img_to_save = Image.open(io.BytesIO(rendered_img_np))
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
-TypeError: a bytes-like object is required, not 'str'
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\texture_service.py", line 729, in apply_local_texture_sync
- raise RuntimeError("Unsupported rendered image type from Gradio Space")
-RuntimeError: Unsupported rendered image type from Gradio Space
-2026-05-11 01:00:06,585 ERROR backend.segmentation: Error during remote render integration (continuing local flow)
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\texture_service.py", line 727, in apply_local_texture_sync
- img_to_save = Image.open(io.BytesIO(rendered_img_np))
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
-TypeError: a bytes-like object is required, not 'str'
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\texture_service.py", line 729, in apply_local_texture_sync
- raise RuntimeError("Unsupported rendered image type from Gradio Space")
-RuntimeError: Unsupported rendered image type from Gradio Space
-2026-05-11 01:00:06,942 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 01:00:07,163 INFO backend.segmentation: [APPLY_TEXTURE] DONE 26.663s at 2026-05-11T07:00:07.163579+00:00
-2026-05-11 01:00:08,434 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:00:08,866 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:00:10,719 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/4f697b34-1aa2-41df-bfd1-f19982489f24 "HTTP/1.1 200 OK"
-2026-05-11 01:00:10,737 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:00:13,075 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:00:15,289 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=4f697b34-1aa2-41df-bfd1-f19982489f24 "HTTP/1.1 200 OK"
-2026-05-11 01:00:25,135 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\6fccbecf855f58faeb9c353aa676bbc1217a2f78a3531d0266304a8da20e5470\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:00:25,144 ERROR backend.segmentation: Failed to save rendered image from Gradio Space
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\texture_service.py", line 727, in apply_local_texture_sync
- img_to_save = Image.open(io.BytesIO(rendered_img_np))
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
-TypeError: a bytes-like object is required, not 'str'
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\texture_service.py", line 729, in apply_local_texture_sync
- raise RuntimeError("Unsupported rendered image type from Gradio Space")
-RuntimeError: Unsupported rendered image type from Gradio Space
-2026-05-11 01:00:25,145 ERROR backend.segmentation: Error during remote render integration (continuing local flow)
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\texture_service.py", line 727, in apply_local_texture_sync
- img_to_save = Image.open(io.BytesIO(rendered_img_np))
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
-TypeError: a bytes-like object is required, not 'str'
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\texture_service.py", line 729, in apply_local_texture_sync
- raise RuntimeError("Unsupported rendered image type from Gradio Space")
-RuntimeError: Unsupported rendered image type from Gradio Space
-2026-05-11 01:00:25,508 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 01:00:25,634 INFO backend.segmentation: [APPLY_TEXTURE] DONE 24.365s at 2026-05-11T07:00:25.634920+00:00
-2026-05-11 01:01:58,589 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7861
-2026-05-11 01:01:58,609 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 01:02:22,178 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7861
-2026-05-11 01:02:22,198 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 01:02:51,769 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a017f1bad7663b910938dbd"}, "remainingTimeMS": 30}
-2026-05-11 01:02:55,731 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:02:55.731211+00:00
-2026-05-11 01:02:59,246 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:03:01,470 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:03:02,157 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:03:03,788 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/f72e320f-3dd3-495b-8cb0-2aa97d6ec2c9 "HTTP/1.1 200 OK"
-2026-05-11 01:03:03,790 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:03:06,063 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:03:08,281 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=f72e320f-3dd3-495b-8cb0-2aa97d6ec2c9 "HTTP/1.1 200 OK"
-2026-05-11 01:03:18,072 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\a0241ac3d66d043389ee63208cf8e598c5bc14a88f1ef0c0ba1204972c9b8f5b\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:03:18,112 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.382s at 2026-05-11T07:03:18.112675+00:00
-2026-05-11 01:03:28,574 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:03:28.574697+00:00
-2026-05-11 01:03:31,794 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:03:34,004 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:03:34,436 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:03:36,294 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/5c32843d-f6f9-460a-8e54-d92cbde9f493 "HTTP/1.1 200 OK"
-2026-05-11 01:03:36,298 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:03:38,567 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:03:40,815 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=5c32843d-f6f9-460a-8e54-d92cbde9f493 "HTTP/1.1 200 OK"
-2026-05-11 01:03:50,473 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\a36f7f6ce561ff2da1d9b2cd19f3166ad95e0ea69bfa43c4cacd37d43e5f0baf\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:03:50,507 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.933s at 2026-05-11T07:03:50.507525+00:00
-2026-05-11 01:03:53,829 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:03:53.829203+00:00
-2026-05-11 01:03:57,076 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:03:59,329 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:03:59,834 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:04:01,620 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/0f966dad-edde-44bb-a9ef-2facb570ff26 "HTTP/1.1 200 OK"
-2026-05-11 01:04:01,623 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:04:03,890 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:04:06,134 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=0f966dad-edde-44bb-a9ef-2facb570ff26 "HTTP/1.1 200 OK"
-2026-05-11 01:04:14,611 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\fdb10066803e396b080246b5d53f1444b85ab32ce2f8adc8055ac70779eda6c7\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:04:14,643 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.815s at 2026-05-11T07:04:14.643822+00:00
-2026-05-11 01:04:31,068 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:04:31.068679+00:00
-2026-05-11 01:04:34,297 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:04:36,522 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:04:36,916 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:04:38,792 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/41a45a3b-dea6-401b-a961-a43d9eeef146 "HTTP/1.1 200 OK"
-2026-05-11 01:04:38,812 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:04:41,051 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:04:43,255 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=41a45a3b-dea6-401b-a961-a43d9eeef146 "HTTP/1.1 200 OK"
-2026-05-11 01:04:53,175 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\c90fa2a168435724e938bd973efa0671ee7b1e14a32cfe2953cccdcddaeed9bd\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:04:53,208 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.139s at 2026-05-11T07:04:53.208514+00:00
-2026-05-11 01:05:04,897 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:05:04.897914+00:00
-2026-05-11 01:05:08,149 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:05:10,379 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:05:10,869 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:05:12,635 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:05:12,646 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/7f5b04fc-b432-4af7-b397-2093bc848196 "HTTP/1.1 200 OK"
-2026-05-11 01:05:14,897 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:05:17,124 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=7f5b04fc-b432-4af7-b397-2093bc848196 "HTTP/1.1 200 OK"
-2026-05-11 01:05:26,777 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\b800eda83c12f620804b3039c42adc116f1df79b420071d9a18c7e119021b832\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:05:26,810 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.913s at 2026-05-11T07:05:26.810808+00:00
-2026-05-11 01:06:12,011 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:06:12.011565+00:00
-2026-05-11 01:06:17,137 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:06:19,606 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:06:20,093 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:06:22,130 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/f6d57324-aa5d-428e-9a3c-6ceb59836305 "HTTP/1.1 200 OK"
-2026-05-11 01:06:22,133 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:06:24,805 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:06:27,208 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=f6d57324-aa5d-428e-9a3c-6ceb59836305 "HTTP/1.1 200 OK"
-2026-05-11 01:06:45,355 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\8f50dc9664f9587eae53015e1509b997c04fa98036c9290e6187367512d5da02\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:06:45,416 INFO backend.segmentation: [APPLY_TEXTURE] DONE 33.406s at 2026-05-11T07:06:45.416640+00:00
-2026-05-11 01:07:09,613 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:07:09.613619+00:00
-2026-05-11 01:07:13,446 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:07:15,702 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:07:16,128 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:07:17,980 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/e84e78f6-9732-4236-a1bf-7e9cc1a9b774 "HTTP/1.1 200 OK"
-2026-05-11 01:07:17,997 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:07:20,296 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:07:22,537 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=e84e78f6-9732-4236-a1bf-7e9cc1a9b774 "HTTP/1.1 200 OK"
-2026-05-11 01:07:32,944 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\6227d070ade7cde210e2e9d7df63c2d27989256a412e8ea36974e0a59a13015e\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:07:32,984 INFO backend.segmentation: [APPLY_TEXTURE] DONE 23.370s at 2026-05-11T07:07:32.984168+00:00
-2026-05-11 01:07:48,931 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:07:48.931971+00:00
-2026-05-11 01:07:52,682 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:07:54,896 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:07:55,375 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:07:57,190 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:07:57,201 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/96094a24-9182-483a-8561-4e4e55af553b "HTTP/1.1 200 OK"
-2026-05-11 01:07:59,536 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:08:01,765 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=96094a24-9182-483a-8561-4e4e55af553b "HTTP/1.1 200 OK"
-2026-05-11 01:08:10,238 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\1c41a512aed2c50d7f0c6d4ea72379809f2a3f46e105a41f0f9e38565785841d\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:08:10,282 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.350s at 2026-05-11T07:08:10.282480+00:00
-2026-05-11 01:08:38,560 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:08:38.560140+00:00
-2026-05-11 01:08:42,343 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:08:44,570 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:08:45,003 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:08:46,839 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/f8529758-c796-4224-be4c-2294112a68b7 "HTTP/1.1 200 OK"
-2026-05-11 01:08:46,841 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:08:49,157 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:08:51,365 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=f8529758-c796-4224-be4c-2294112a68b7 "HTTP/1.1 200 OK"
-2026-05-11 01:09:00,651 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\15f80783b48749ce17b32cc0aa708fd16e5c3c4952e7baa88b58688069e2372f\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:09:00,686 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.127s at 2026-05-11T07:09:00.686616+00:00
-2026-05-11 01:09:14,687 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:09:14.687785+00:00
-2026-05-11 01:09:18,535 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:09:20,758 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:09:21,287 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:09:23,032 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/f0604982-22f5-4b8b-b79c-d21ea5d2c527 "HTTP/1.1 200 OK"
-2026-05-11 01:09:23,051 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:09:25,370 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:09:27,610 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=f0604982-22f5-4b8b-b79c-d21ea5d2c527 "HTTP/1.1 200 OK"
-2026-05-11 01:09:36,614 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\37c1f8856b784b099916f708990bea28fe50688285c475371b20d242b5fbf0a6\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:09:36,662 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.974s at 2026-05-11T07:09:36.662611+00:00
-2026-05-11 01:09:47,181 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:09:47.181137+00:00
-2026-05-11 01:09:50,937 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:09:53,178 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:09:53,603 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:09:55,458 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/8a3b75ca-572e-4915-be54-edf2e0ae0929 "HTTP/1.1 200 OK"
-2026-05-11 01:09:55,460 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:09:57,802 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:10:00,032 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=8a3b75ca-572e-4915-be54-edf2e0ae0929 "HTTP/1.1 200 OK"
-2026-05-11 01:10:09,202 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:10:09,238 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar), trying CPU fallback...
-2026-05-11 01:10:09,879 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 01:10:10,458 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:10:10,527 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7861): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 01:10:10,942 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:10:10,996 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 01:10:11,006 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/327144cd-fa09-4141-b0bb-37f9c05564a8 "HTTP/1.1 200 OK"
-2026-05-11 01:10:11,380 INFO backend.segmentation: [APPLY_TEXTURE] DONE 24.200s at 2026-05-11T07:10:11.380471+00:00
-2026-05-11 01:10:44,673 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:10:44.673006+00:00
-2026-05-11 01:10:48,706 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:10:50,923 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:10:51,405 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:10:53,196 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/60ad61fc-6e8a-4f70-a9cf-0326c71edd29 "HTTP/1.1 200 OK"
-2026-05-11 01:10:53,214 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:10:55,575 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:10:57,809 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=60ad61fc-6e8a-4f70-a9cf-0326c71edd29 "HTTP/1.1 200 OK"
-2026-05-11 01:11:07,574 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\809563183a76c7f74f9f6ea49fc9595d2a95fa1bcfe5985fa4450dc8dffbe6e7\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:11:07,609 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.936s at 2026-05-11T07:11:07.609355+00:00
-2026-05-11 01:11:37,447 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:11:37.447764+00:00
-2026-05-11 01:11:41,514 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:11:43,748 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:11:44,151 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:11:46,044 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/926557a0-6f74-4161-9a0a-49d0f9ec5923 "HTTP/1.1 200 OK"
-2026-05-11 01:11:46,048 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:11:48,400 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:11:50,602 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=926557a0-6f74-4161-9a0a-49d0f9ec5923 "HTTP/1.1 200 OK"
-2026-05-11 01:11:59,284 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\503643d8a558a4c61557d2f2c7cdb8ad6d7f9d88fe3d57d119821583a0acfb15\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:11:59,319 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.871s at 2026-05-11T07:11:59.319274+00:00
-2026-05-11 01:12:24,802 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:12:24.802666+00:00
-2026-05-11 01:12:28,874 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:12:31,118 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:12:32,344 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:12:33,430 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/aa4ce6a4-a3b8-48d4-b8a2-aae8b10bc2b2 "HTTP/1.1 200 OK"
-2026-05-11 01:12:33,434 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:12:35,777 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:12:38,002 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=aa4ce6a4-a3b8-48d4-b8a2-aae8b10bc2b2 "HTTP/1.1 200 OK"
-2026-05-11 01:12:47,307 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\0dab17a794d09e675c5ecbabf7e0aa9b84acce9db17be10ee180bca4497b7945\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:12:47,344 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.542s at 2026-05-11T07:12:47.344700+00:00
-2026-05-11 01:12:58,776 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:12:58.776347+00:00
-2026-05-11 01:13:02,833 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:13:05,204 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:13:05,637 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:13:07,486 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/5128ebf4-bef1-4557-887f-9c1d62bef7e3 "HTTP/1.1 200 OK"
-2026-05-11 01:13:07,488 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:13:09,774 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:13:11,988 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=5128ebf4-bef1-4557-887f-9c1d62bef7e3 "HTTP/1.1 200 OK"
-2026-05-11 01:13:23,874 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\774616f6c0df92ecd7c74569be071f234650be2c0b86f09160baec998dfd5c90\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:13:23,908 INFO backend.segmentation: [APPLY_TEXTURE] DONE 25.132s at 2026-05-11T07:13:23.908609+00:00
-2026-05-11 01:13:35,636 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:13:35.636648+00:00
-2026-05-11 01:13:39,412 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:13:41,649 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:13:42,161 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:13:43,959 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/683cce21-955f-4df7-ae78-2a94dd251026 "HTTP/1.1 200 OK"
-2026-05-11 01:13:43,960 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:13:46,266 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:13:48,491 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=683cce21-955f-4df7-ae78-2a94dd251026 "HTTP/1.1 200 OK"
-2026-05-11 01:14:00,798 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\24655a4c5a1c05a05c0d28ce9352f9d0b7a3aa2f81a2edea9cf9417691adc9a3\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:14:00,832 INFO backend.segmentation: [APPLY_TEXTURE] DONE 25.196s at 2026-05-11T07:14:00.832652+00:00
-2026-05-11 01:14:10,101 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0181c2ad7663b910938dbe"}, "remainingTimeMS": 30}
-2026-05-11 01:14:15,444 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T07:14:15.444171+00:00
-2026-05-11 01:14:15,445 INFO backend.segmentation: [JOB 9c35bdf672b24aa8ab2f8c7d741909d6] preparing_image progress=12
-2026-05-11 01:14:15,480 INFO backend.segmentation: [JOB 9c35bdf672b24aa8ab2f8c7d741909d6] segmenting_with_sam2 progress=30 estimated_seconds=94.01599999999999
-2026-05-11 01:14:15,480 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7861
-2026-05-11 01:14:17,755 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:14:19,987 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:14:20,404 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:14:22,250 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/fe34eec8-6368-444c-b506-e7d57c0b670b "HTTP/1.1 200 OK"
-2026-05-11 01:14:22,269 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:14:24,498 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:14:26,739 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=fe34eec8-6368-444c-b506-e7d57c0b670b "HTTP/1.1 200 OK"
-2026-05-11 01:15:38,919 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\56758f540e1c547de434b369fae158810fde033fe3650199c54eecf9fd68ac46\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:15:38,938 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=58
-2026-05-11 01:15:38,939 INFO backend.segmentation: [JOB 9c35bdf672b24aa8ab2f8c7d741909d6] saving_masks progress=92
-2026-05-11 01:15:39,189 INFO backend.segmentation: [JOB 9c35bdf672b24aa8ab2f8c7d741909d6] segments_meta saved (58 segments)
-2026-05-11 01:15:39,189 INFO backend.segmentation: [JOB 9c35bdf672b24aa8ab2f8c7d741909d6] done mask_count=58
-2026-05-11 01:15:39,189 INFO backend.segmentation: [UPLOAD_BG] DONE 83.745s at 2026-05-11T07:15:39.189518+00:00
-2026-05-11 01:15:39,189 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 01:15:48,737 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:15:48.737247+00:00
-2026-05-11 01:15:49,707 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:15:49.707744+00:00
-2026-05-11 01:15:52,680 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:15:53,631 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:15:54,911 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:15:55,468 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:15:55,845 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:15:56,044 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:15:57,202 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/4a705aa0-f689-46ea-97f5-15863d8baec8 "HTTP/1.1 200 OK"
-2026-05-11 01:15:57,203 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:15:58,124 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/a2c2c118-eaf6-434d-a743-2fe1deddff99 "HTTP/1.1 200 OK"
-2026-05-11 01:15:58,127 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:15:59,497 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:16:00,430 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:16:01,745 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=4a705aa0-f689-46ea-97f5-15863d8baec8 "HTTP/1.1 200 OK"
-2026-05-11 01:16:02,667 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=a2c2c118-eaf6-434d-a743-2fe1deddff99 "HTTP/1.1 200 OK"
-2026-05-11 01:16:12,415 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\9931b16150cffe4276187d82f98d6d26f2e65768a9a5e29c4841a0cd0ace8c43\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:16:12,476 INFO backend.segmentation: [APPLY_TEXTURE] DONE 23.739s at 2026-05-11T07:16:12.476106+00:00
-2026-05-11 01:16:22,102 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\9931b16150cffe4276187d82f98d6d26f2e65768a9a5e29c4841a0cd0ace8c43\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:16:22,141 INFO backend.segmentation: [APPLY_TEXTURE] DONE 32.434s at 2026-05-11T07:16:22.141876+00:00
-2026-05-11 01:16:34,010 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:16:34.010080+00:00
-2026-05-11 01:16:38,027 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:16:40,260 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:16:40,735 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:16:42,572 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:16:42,584 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/931da22b-6ab6-43e4-bbb1-7f28e8bed3df "HTTP/1.1 200 OK"
-2026-05-11 01:16:44,939 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:16:47,207 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=931da22b-6ab6-43e4-bbb1-7f28e8bed3df "HTTP/1.1 200 OK"
-2026-05-11 01:16:56,571 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\89f7e761e614acc1ce7980f1bc3a57c44c02acffdf1327e62d01abf19e7ac3dd\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:16:56,618 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.608s at 2026-05-11T07:16:56.618223+00:00
-2026-05-11 01:17:21,863 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:17:21.863478+00:00
-2026-05-11 01:17:25,635 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:17:27,850 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:17:28,328 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:17:30,124 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/78467926-f639-4fff-b594-b22e73a4e796 "HTTP/1.1 200 OK"
-2026-05-11 01:17:30,127 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:17:32,444 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:17:34,654 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=78467926-f639-4fff-b594-b22e73a4e796 "HTTP/1.1 200 OK"
-2026-05-11 01:17:43,596 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:17:43,600 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 102, in render
- canvas = self._tile_texture(texture, tiles_x, tiles_y)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio), trying CPU fallback...
-2026-05-11 01:17:44,204 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 01:17:44,752 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:17:44,814 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7861): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 102, in render
- canvas = self._tile_texture(texture, tiles_x, tiles_y)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 01:17:45,194 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-11 01:17:45,236 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:17:45,299 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/91179f12-20de-4391-a947-92fac749b4a8 "HTTP/1.1 200 OK"
-2026-05-11 01:17:45,490 INFO backend.segmentation: [APPLY_TEXTURE] DONE 23.628s at 2026-05-11T07:17:45.490550+00:00
-2026-05-11 01:18:02,698 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:18:02.698716+00:00
-2026-05-11 01:18:06,674 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:18:08,930 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:18:09,363 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:18:11,211 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/72669362-1cf1-469d-83d1-9b080846fd90 "HTTP/1.1 200 OK"
-2026-05-11 01:18:11,228 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:18:13,530 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:18:15,794 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=72669362-1cf1-469d-83d1-9b080846fd90 "HTTP/1.1 200 OK"
-2026-05-11 01:18:25,648 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:18:25,652 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 102, in render
- canvas = self._tile_texture(texture, tiles_x, tiles_y)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio), trying CPU fallback...
-2026-05-11 01:18:26,163 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 01:18:26,695 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:18:26,760 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7861): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 102, in render
- canvas = self._tile_texture(texture, tiles_x, tiles_y)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 01:18:27,097 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-11 01:18:27,167 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:18:27,244 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/e3493f6c-8216-4b3c-ad23-6be8bfee608c "HTTP/1.1 200 OK"
-2026-05-11 01:18:27,350 INFO backend.segmentation: [APPLY_TEXTURE] DONE 24.652s at 2026-05-11T07:18:27.350458+00:00
-2026-05-11 01:19:25,431 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:19:25.430391+00:00
-2026-05-11 01:19:31,260 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:19:33,529 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:19:34,187 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:19:36,012 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/219efbdb-1ac5-4065-ab0a-4961533a75b8 "HTTP/1.1 200 OK"
-2026-05-11 01:19:36,041 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:19:38,405 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:19:40,673 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=219efbdb-1ac5-4065-ab0a-4961533a75b8 "HTTP/1.1 200 OK"
-2026-05-11 01:19:56,234 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\fa7fc0fa70fe0bd04e4a677d0ff7567cb5e73db42518b2f94804471cb2f180a3\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:19:56,347 INFO backend.segmentation: [APPLY_TEXTURE] DONE 30.917s at 2026-05-11T07:19:56.347937+00:00
-2026-05-11 01:21:43,185 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T07:21:43.185923+00:00
-2026-05-11 01:21:46,987 INFO httpx: HTTP Request: GET http://localhost:7861/config "HTTP/1.1 200 OK"
-2026-05-11 01:21:49,209 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:21:49,685 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:21:51,506 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/heartbeat/8ef4194a-039a-4899-abbe-ed9c2a60cef3 "HTTP/1.1 200 OK"
-2026-05-11 01:21:51,512 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 01:21:53,789 INFO httpx: HTTP Request: POST http://localhost:7861/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 01:21:55,997 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/queue/data?session_hash=8ef4194a-039a-4899-abbe-ed9c2a60cef3 "HTTP/1.1 200 OK"
-2026-05-11 01:22:11,314 INFO httpx: HTTP Request: GET http://localhost:7861/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 01:22:11,322 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 102, in render
- canvas = self._tile_texture(texture, tiles_x, tiles_y)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio), trying CPU fallback...
-2026-05-11 01:22:11,894 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 01:22:12,458 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 01:22:12,524 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7861): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 102, in render
- canvas = self._tile_texture(texture, tiles_x, tiles_y)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 01:22:12,912 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\acm azul.jpg
-2026-05-11 01:22:12,938 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 01:22:13,030 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/284ba0cb-0966-4791-889d-4043f7997679 "HTTP/1.1 200 OK"
-2026-05-11 01:22:13,210 INFO backend.segmentation: [APPLY_TEXTURE] DONE 30.024s at 2026-05-11T07:22:13.210393+00:00
-2026-05-11 07:13:12,698 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7861
-2026-05-11 07:13:12,725 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:13:50,328 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01d60ed81163beadabb83e"}, "remainingTimeMS": 30}
-2026-05-11 07:13:58,568 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01d616d81163beadabb83f"}, "remainingTimeMS": 30}
-2026-05-11 07:15:33,988 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 07:15:34,010 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:15:45,946 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:15:45.946655+00:00
-2026-05-11 07:15:50,295 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:15:52,507 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:15:53,306 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:15:54,828 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/a11ee22c-36e3-4b24-981b-db3d93d99bea "HTTP/1.1 200 OK"
-2026-05-11 07:15:54,847 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:15:57,142 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:15:59,380 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=a11ee22c-36e3-4b24-981b-db3d93d99bea "HTTP/1.1 200 OK"
-2026-05-11 07:16:09,721 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\729d40f29feb319d3a68ae2b4fea5c683335ec7a103e3d78bd6a9d1387940f36\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:16:09,783 INFO backend.segmentation: [APPLY_TEXTURE] DONE 23.837s at 2026-05-11T13:16:09.783095+00:00
-2026-05-11 07:17:13,338 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:17:13.338368+00:00
-2026-05-11 07:17:18,532 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:17:20,901 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:17:21,366 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:17:23,344 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/f6e2a1f3-2f5d-4db3-b90b-44c39de26562 "HTTP/1.1 200 OK"
-2026-05-11 07:17:23,378 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:17:25,720 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:17:28,103 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=f6e2a1f3-2f5d-4db3-b90b-44c39de26562 "HTTP/1.1 200 OK"
-2026-05-11 07:17:41,263 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\675d61dd04d77c05fa3d52350471a44ad72ba1d471483f3a9aed39ed7a39af6a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:17:41,323 INFO backend.segmentation: [APPLY_TEXTURE] DONE 27.985s at 2026-05-11T13:17:41.323349+00:00
-2026-05-11 07:17:55,935 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:17:55.935240+00:00
-2026-05-11 07:18:01,174 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:18:03,556 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:18:03,975 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:18:05,991 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:18:06,001 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/c29c2207-1ec3-4503-8893-9012e86a29e1 "HTTP/1.1 200 OK"
-2026-05-11 07:18:08,513 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:18:10,864 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=c29c2207-1ec3-4503-8893-9012e86a29e1 "HTTP/1.1 200 OK"
-2026-05-11 07:18:24,554 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\ccbb8ca6c7e4be2509d23cfc58038fb418eb8cd45d3d4d98a6d8775a3b07f85a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:18:24,627 INFO backend.segmentation: [APPLY_TEXTURE] DONE 28.693s at 2026-05-11T13:18:24.627719+00:00
-2026-05-11 07:18:33,797 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:18:33.797526+00:00
-2026-05-11 07:18:39,002 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:18:41,357 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:18:41,968 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:18:43,632 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/8ad846f5-30d0-476f-80e2-c217afbf0803 "HTTP/1.1 200 OK"
-2026-05-11 07:18:43,635 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:18:46,182 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:18:48,596 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=8ad846f5-30d0-476f-80e2-c217afbf0803 "HTTP/1.1 200 OK"
-2026-05-11 07:19:01,667 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28a68084867dd6206a2dc79b6123ec746f4a27cb24d83120172efbf07f8dd75\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:19:01,731 INFO backend.segmentation: [APPLY_TEXTURE] DONE 27.934s at 2026-05-11T13:19:01.731818+00:00
-2026-05-11 07:19:18,283 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:19:18.283374+00:00
-2026-05-11 07:19:23,498 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:19:25,870 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:19:26,324 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:19:28,331 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/7c18efe0-2aa1-4a8c-b4de-45ff5ed748d0 "HTTP/1.1 200 OK"
-2026-05-11 07:19:28,335 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:19:30,917 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:19:33,358 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=7c18efe0-2aa1-4a8c-b4de-45ff5ed748d0 "HTTP/1.1 200 OK"
-2026-05-11 07:19:48,011 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\22e6a58307d452f4902fa2fb6a95d27241b0ee925497e2ea8e996c57055a5054\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:19:48,073 INFO backend.segmentation: [APPLY_TEXTURE] DONE 29.790s at 2026-05-11T13:19:48.073114+00:00
-2026-05-11 07:21:10,171 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01d7c64751e61bdffcd21f"}, "remainingTimeMS": 30}
-2026-05-11 07:21:11,111 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01d7c74751e61bdffcd220"}, "remainingTimeMS": 30}
-2026-05-11 07:21:20,560 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:21:20.560364+00:00
-2026-05-11 07:21:20,666 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:21:21,019 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.459s at 2026-05-11T13:21:21.019762+00:00
-2026-05-11 07:27:15,633 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:27:15.633288+00:00
-2026-05-11 07:27:18,221 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:27:20,612 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:27:21,121 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:27:23,064 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:27:23,090 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/325c2bf9-7929-4ac4-8a3d-9b33144e56b7 "HTTP/1.1 200 OK"
-2026-05-11 07:27:25,397 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:27:27,782 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=325c2bf9-7929-4ac4-8a3d-9b33144e56b7 "HTTP/1.1 200 OK"
-2026-05-11 07:27:42,623 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f8362e21088d5fd20e87ed36619f4fe1d0e0a2bc6ab13bdd8b4706d6b235624c\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:27:42,670 INFO backend.segmentation: [APPLY_TEXTURE] DONE 27.038s at 2026-05-11T13:27:42.670991+00:00
-2026-05-11 07:27:49,357 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 07:27:49,376 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:27:50,356 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 07:27:50,373 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:27:50,535 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:27:50.535701+00:00
-2026-05-11 07:27:53,100 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:27:55,364 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:27:56,034 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:27:57,702 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/937d3390-5a64-49f4-8474-ccf21a7b6729 "HTTP/1.1 200 OK"
-2026-05-11 07:27:57,704 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:27:59,916 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:28:02,136 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=937d3390-5a64-49f4-8474-ccf21a7b6729 "HTTP/1.1 200 OK"
-2026-05-11 07:28:09,421 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\110d2842ccb4068c48b39f1b64f6346b8d4250df6032fb5fcd0702f592783ada\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:28:09,461 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.926s at 2026-05-11T13:28:09.461663+00:00
-2026-05-11 07:28:25,643 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:28:25.643454+00:00
-2026-05-11 07:28:27,945 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:28:30,179 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:28:30,670 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:28:32,504 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/cc5f45a1-db87-4c3f-bb12-92f9dd7a18d9 "HTTP/1.1 200 OK"
-2026-05-11 07:28:32,523 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:28:34,759 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:28:37,032 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=cc5f45a1-db87-4c3f-bb12-92f9dd7a18d9 "HTTP/1.1 200 OK"
-2026-05-11 07:28:44,468 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\71a2029e9d632f4b23f28f463bbc5aa1c286b2dee733c22db45bd5e1efaf8736\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:28:44,509 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.866s at 2026-05-11T13:28:44.509013+00:00
-2026-05-11 07:29:09,586 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:29:09.585246+00:00
-2026-05-11 07:29:11,883 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:29:14,093 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:29:14,652 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:29:16,350 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/bc41025f-ff7c-473a-99a4-e2866e146d8f "HTTP/1.1 200 OK"
-2026-05-11 07:29:16,369 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:29:18,602 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:29:20,825 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=bc41025f-ff7c-473a-99a4-e2866e146d8f "HTTP/1.1 200 OK"
-2026-05-11 07:29:28,367 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\71a2029e9d632f4b23f28f463bbc5aa1c286b2dee733c22db45bd5e1efaf8736\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:29:28,407 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.822s at 2026-05-11T13:29:28.407606+00:00
-2026-05-11 07:29:43,030 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:29:43.029505+00:00
-2026-05-11 07:29:45,332 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:29:47,555 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:29:48,053 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:29:49,850 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9b7c17df-0072-4385-8c82-f8409904d2c0 "HTTP/1.1 200 OK"
-2026-05-11 07:29:49,867 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:29:52,080 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:29:54,315 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9b7c17df-0072-4385-8c82-f8409904d2c0 "HTTP/1.1 200 OK"
-2026-05-11 07:30:01,480 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\25f8fa5117371da311a2a13bd9132fa18bd3932b0e211851a8ae1228ddc2fce9\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:30:01,520 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.491s at 2026-05-11T13:30:01.520860+00:00
-2026-05-11 07:33:43,650 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:33:43.650065+00:00
-2026-05-11 07:33:43,719 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:33:43,984 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.334s at 2026-05-11T13:33:43.984042+00:00
-2026-05-11 07:33:50,055 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 07:33:50,072 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:33:50,909 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 07:33:50,928 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:33:55,052 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:33:55.052005+00:00
-2026-05-11 07:33:55,120 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:33:55,356 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.304s at 2026-05-11T13:33:55.356129+00:00
-2026-05-11 07:34:02,218 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:34:02.218913+00:00
-2026-05-11 07:34:02,283 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:34:02,430 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.211s at 2026-05-11T13:34:02.430738+00:00
-2026-05-11 07:34:18,953 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 07:34:18,970 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:34:59,144 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:34:59.144946+00:00
-2026-05-11 07:34:59,206 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:34:59,450 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.305s at 2026-05-11T13:34:59.450085+00:00
-2026-05-11 07:35:06,472 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:35:06.472072+00:00
-2026-05-11 07:35:06,536 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:35:06,689 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.217s at 2026-05-11T13:35:06.689925+00:00
-2026-05-11 07:35:09,562 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:35:09.562481+00:00
-2026-05-11 07:35:09,621 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:35:09,776 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.214s at 2026-05-11T13:35:09.775774+00:00
-2026-05-11 07:35:16,445 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:35:16.445541+00:00
-2026-05-11 07:35:18,941 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:35:21,128 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:35:21,947 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:35:23,459 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e4b31458-bd8a-4287-ae80-b3088c6194e8 "HTTP/1.1 200 OK"
-2026-05-11 07:35:23,477 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:35:25,713 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:35:27,923 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e4b31458-bd8a-4287-ae80-b3088c6194e8 "HTTP/1.1 200 OK"
-2026-05-11 07:35:34,823 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\0338ca15cb59376406f9703a5fafbe1d16bce8078421b9b5f070f58ae0e1ddf3\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:35:34,864 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.419s at 2026-05-11T13:35:34.864504+00:00
-2026-05-11 07:35:41,607 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:35:41.607751+00:00
-2026-05-11 07:35:41,661 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:35:41,798 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.191s at 2026-05-11T13:35:41.798823+00:00
-2026-05-11 07:36:11,418 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:36:11.418408+00:00
-2026-05-11 07:36:11,482 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:36:11,630 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.212s at 2026-05-11T13:36:11.630491+00:00
-2026-05-11 07:38:10,674 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:38:10.674971+00:00
-2026-05-11 07:38:10,733 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:38:10,874 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.199s at 2026-05-11T13:38:10.874147+00:00
-2026-05-11 07:38:14,602 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:38:14.602624+00:00
-2026-05-11 07:38:14,659 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:38:14,788 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.186s at 2026-05-11T13:38:14.788434+00:00
-2026-05-11 07:38:16,586 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:38:16.586749+00:00
-2026-05-11 07:38:16,638 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:38:16,775 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.189s at 2026-05-11T13:38:16.775439+00:00
-2026-05-11 07:38:22,824 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 07:38:22,841 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:38:23,729 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 07:38:23,748 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 07:38:24,732 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:38:24.732831+00:00
-2026-05-11 07:38:27,246 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:38:29,471 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:38:30,373 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:38:31,820 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/0bde684e-9409-42df-85ba-a06b9ce26f5d "HTTP/1.1 200 OK"
-2026-05-11 07:38:31,823 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:38:34,067 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:38:36,312 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=0bde684e-9409-42df-85ba-a06b9ce26f5d "HTTP/1.1 200 OK"
-2026-05-11 07:38:44,753 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\14adfeb89efc350fed4c091a1c2a36b9963f8f02c3b0acdab1a057c2491bd08b\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:38:44,789 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.057s at 2026-05-11T13:38:44.789504+00:00
-2026-05-11 07:38:51,084 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:38:51.084073+00:00
-2026-05-11 07:38:53,437 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:38:55,654 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:38:56,151 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:38:57,952 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/fcddc33f-ce6c-4a1a-b8e7-e15271bb8b28 "HTTP/1.1 200 OK"
-2026-05-11 07:38:57,956 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:39:00,194 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:39:02,430 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=fcddc33f-ce6c-4a1a-b8e7-e15271bb8b28 "HTTP/1.1 200 OK"
-2026-05-11 07:39:09,990 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\3f7673441243a20fb8c1c1296c0604d6add78c532f3b43713dc33c6f5b01c01d\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:39:10,290 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.207s at 2026-05-11T13:39:10.290307+00:00
-2026-05-11 07:39:38,492 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:39:38.492111+00:00
-2026-05-11 07:39:40,832 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:39:43,049 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:39:43,532 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:39:45,309 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9089d9d6-6621-45d6-8f79-0cad62b5e02e "HTTP/1.1 200 OK"
-2026-05-11 07:39:45,327 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:39:47,563 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:39:49,790 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9089d9d6-6621-45d6-8f79-0cad62b5e02e "HTTP/1.1 200 OK"
-2026-05-11 07:39:57,349 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\edf2f53c824ca65974f0828fb3ec04b4f927ff2b9e1d15f34452a0c9c692c6c1\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:39:57,388 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.897s at 2026-05-11T13:39:57.388992+00:00
-2026-05-11 07:40:32,684 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:40:32.684097+00:00
-2026-05-11 07:40:34,989 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:40:37,204 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:40:37,643 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:40:39,445 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9309607a-78df-4850-b4ed-d11d8ce128dc "HTTP/1.1 200 OK"
-2026-05-11 07:40:39,479 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:40:41,701 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:40:43,917 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9309607a-78df-4850-b4ed-d11d8ce128dc "HTTP/1.1 200 OK"
-2026-05-11 07:40:51,589 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\93a293fc5f8b3f7ca4a901325b2a8043caa52a8e718eb3f3aaf5e7af683c761e\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:40:51,625 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.941s at 2026-05-11T13:40:51.625392+00:00
-2026-05-11 07:41:13,398 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:41:13.398449+00:00
-2026-05-11 07:41:15,759 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:41:18,011 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:41:18,516 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:41:20,297 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/99b73b62-ad71-4c2b-bd87-9c72f216d0e0 "HTTP/1.1 200 OK"
-2026-05-11 07:41:20,299 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:41:22,508 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:41:24,718 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=99b73b62-ad71-4c2b-bd87-9c72f216d0e0 "HTTP/1.1 200 OK"
-2026-05-11 07:41:32,501 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\e939b9878a8afdfede728393e1124bcaf1e59cb72b45f15f0000cf7073ba5417\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:41:32,537 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.139s at 2026-05-11T13:41:32.537339+00:00
-2026-05-11 07:41:59,745 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:41:59.745741+00:00
-2026-05-11 07:42:02,074 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:42:04,321 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:42:04,758 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:42:06,589 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/cba0e5ca-e1fb-4dba-adad-98257d2209d2 "HTTP/1.1 200 OK"
-2026-05-11 07:42:06,591 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:42:08,826 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:42:11,070 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=cba0e5ca-e1fb-4dba-adad-98257d2209d2 "HTTP/1.1 200 OK"
-2026-05-11 07:42:18,732 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7cb0ccfd38250adde7e4e1bbd7e0c134e715b997602e6ae1d49a345e3def99ff\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:42:18,771 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.026s at 2026-05-11T13:42:18.771536+00:00
-2026-05-11 07:42:51,522 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:42:51.522667+00:00
-2026-05-11 07:42:53,886 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:42:56,101 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:42:56,624 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:42:58,399 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:42:58,411 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/6392e3d4-2343-4057-a9f3-4266c304696d "HTTP/1.1 200 OK"
-2026-05-11 07:43:00,667 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:43:02,915 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=6392e3d4-2343-4057-a9f3-4266c304696d "HTTP/1.1 200 OK"
-2026-05-11 07:43:10,561 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\12042b72b3e1b7eb8bc40f86c07a6b00feaa7c6496facdea8517ff6d5906573b\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:43:10,596 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.075s at 2026-05-11T13:43:10.596965+00:00
-2026-05-11 07:43:37,234 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:43:37.234198+00:00
-2026-05-11 07:43:39,565 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:43:41,794 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:43:42,228 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:43:44,077 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:43:44,090 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9faceb92-08d2-469d-bba5-65a235389397 "HTTP/1.1 200 OK"
-2026-05-11 07:43:46,307 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:43:48,512 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9faceb92-08d2-469d-bba5-65a235389397 "HTTP/1.1 200 OK"
-2026-05-11 07:43:56,081 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:43:56,090 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar), trying CPU fallback...
-2026-05-11 07:43:56,692 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 07:43:58,256 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:43:58,334 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7860): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 07:43:58,384 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:43:58,605 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.372s at 2026-05-11T13:43:58.605602+00:00
-2026-05-11 07:43:58,819 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/31d3bf51-d166-46d7-b293-3bed8d7168e2 "HTTP/1.1 200 OK"
-2026-05-11 07:43:58,876 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:44:19,811 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:44:19.811326+00:00
-2026-05-11 07:44:22,182 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:44:24,421 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:44:24,819 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:44:26,702 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:44:26,713 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e0d0c951-cf23-41f4-ae41-1737485e6342 "HTTP/1.1 200 OK"
-2026-05-11 07:44:28,952 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:44:31,175 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e0d0c951-cf23-41f4-ae41-1737485e6342 "HTTP/1.1 200 OK"
-2026-05-11 07:44:38,763 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\0daad28c16c3efda612bf1756d7fa4ca142964f11f7d46b2f28cd63398fcf7f5\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:44:38,807 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.996s at 2026-05-11T13:44:38.807439+00:00
-2026-05-11 07:45:14,328 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:45:14.328987+00:00
-2026-05-11 07:45:16,655 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:45:18,887 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:45:19,378 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:45:21,178 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e9e8492e-0e98-40fc-9b78-5d6a8f089986 "HTTP/1.1 200 OK"
-2026-05-11 07:45:21,180 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:45:23,442 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:45:25,653 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e9e8492e-0e98-40fc-9b78-5d6a8f089986 "HTTP/1.1 200 OK"
-2026-05-11 07:45:33,036 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:45:33,040 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar), trying CPU fallback...
-2026-05-11 07:45:33,595 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 07:45:34,139 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:45:34,205 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7860): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 07:45:34,251 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:45:34,383 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.055s at 2026-05-11T13:45:34.383184+00:00
-2026-05-11 07:45:34,629 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:45:34,706 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/1564da95-6ba7-4dcd-b803-181c06a794ff "HTTP/1.1 200 OK"
-2026-05-11 07:46:33,928 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:46:33.928213+00:00
-2026-05-11 07:46:36,364 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:46:38,648 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:46:39,057 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:46:41,001 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/a00f5788-7a02-4625-a39f-678676469771 "HTTP/1.1 200 OK"
-2026-05-11 07:46:41,003 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:46:43,263 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:46:45,512 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=a00f5788-7a02-4625-a39f-678676469771 "HTTP/1.1 200 OK"
-2026-05-11 07:46:53,902 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\4d35dd1da300e912d4594e91f1dd8e7800f9691a6c461c1feaf24c4f1a84e6b2\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:46:53,937 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.010s at 2026-05-11T13:46:53.937355+00:00
-2026-05-11 07:47:24,918 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:47:24.918247+00:00
-2026-05-11 07:47:27,312 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:47:29,573 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:47:29,998 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:47:31,912 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/357fd497-f65c-4b01-b191-ac1d988235e2 "HTTP/1.1 200 OK"
-2026-05-11 07:47:31,913 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:47:34,171 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:47:36,414 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=357fd497-f65c-4b01-b191-ac1d988235e2 "HTTP/1.1 200 OK"
-2026-05-11 07:47:44,980 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:47:44,989 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar), trying CPU fallback...
-2026-05-11 07:47:45,614 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 07:47:46,162 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:47:46,232 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7860): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 07:47:46,286 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:47:46,442 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.524s at 2026-05-11T13:47:46.442982+00:00
-2026-05-11 07:47:46,714 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:47:46,814 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/1f91b04c-d094-4ee1-a145-a4b4e6ae6f77 "HTTP/1.1 200 OK"
-2026-05-11 07:47:51,353 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:47:51.353332+00:00
-2026-05-11 07:47:53,787 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:47:56,074 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:47:56,491 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:47:58,489 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9041175c-8b0a-4ec9-8f88-9908152bf966 "HTTP/1.1 200 OK"
-2026-05-11 07:47:58,491 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:48:00,774 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:48:03,043 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9041175c-8b0a-4ec9-8f88-9908152bf966 "HTTP/1.1 200 OK"
-2026-05-11 07:48:11,807 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:48:11,811 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar), trying CPU fallback...
-2026-05-11 07:48:12,417 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 07:48:12,978 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:48:13,047 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7860): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 07:48:13,100 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:48:13,255 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.901s at 2026-05-11T13:48:13.255523+00:00
-2026-05-11 07:48:13,470 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:48:13,570 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/86a5d70d-fa66-4e77-b00d-c6aba4296bf8 "HTTP/1.1 200 OK"
-2026-05-11 07:48:30,424 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:48:30.424562+00:00
-2026-05-11 07:48:32,748 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:48:34,991 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:48:35,404 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:48:37,281 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/7619bfd6-9537-43ba-8ffc-2e81c5538505 "HTTP/1.1 200 OK"
-2026-05-11 07:48:37,296 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:48:39,544 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:48:41,758 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=7619bfd6-9537-43ba-8ffc-2e81c5538505 "HTTP/1.1 200 OK"
-2026-05-11 07:48:50,375 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:48:50,379 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar), trying CPU fallback...
-2026-05-11 07:48:50,938 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 07:48:51,496 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:48:51,567 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7860): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- warped = cv2.warpPerspective(
- ^^^^^^^^^^^^^^^^^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwar
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 07:48:51,612 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:48:51,740 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.315s at 2026-05-11T13:48:51.740122+00:00
-2026-05-11 07:48:52,074 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/a00d1f87-e3ec-4e12-8e9c-2996de163879 "HTTP/1.1 200 OK"
-2026-05-11 07:48:52,074 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:49:23,980 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:49:23.980415+00:00
-2026-05-11 07:49:26,360 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:49:28,599 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:49:29,020 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:49:30,925 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/304091ec-fab3-47d9-96ec-fe167949a362 "HTTP/1.1 200 OK"
-2026-05-11 07:49:30,927 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:49:33,143 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:49:35,383 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=304091ec-fab3-47d9-96ec-fe167949a362 "HTTP/1.1 200 OK"
-2026-05-11 07:49:44,261 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\00613741eaeb077b298a6d4d93d8e4bf259c3ef854e9bcf70f1512004c8aa153\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:49:44,308 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.327s at 2026-05-11T13:49:44.308139+00:00
-2026-05-11 07:50:14,097 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:50:14.097240+00:00
-2026-05-11 07:50:16,435 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:50:18,683 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:50:19,176 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:50:21,006 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:50:21,020 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e9f3e165-c3d5-4f55-aa69-0df03df96edb "HTTP/1.1 200 OK"
-2026-05-11 07:50:23,258 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:50:25,482 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e9f3e165-c3d5-4f55-aa69-0df03df96edb "HTTP/1.1 200 OK"
-2026-05-11 07:50:33,149 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\4b50605c21544baded31f810e531e694fac79169d17d82135ea782303cd12fb4\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:50:33,185 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.088s at 2026-05-11T13:50:33.185866+00:00
-2026-05-11 07:52:34,828 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:52:34.828499+00:00
-2026-05-11 07:52:37,264 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:52:39,566 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:52:40,098 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:52:41,933 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/f4f3cbfa-3f67-4632-81cb-329bb225e919 "HTTP/1.1 200 OK"
-2026-05-11 07:52:41,936 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:52:44,186 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:52:46,470 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=f4f3cbfa-3f67-4632-81cb-329bb225e919 "HTTP/1.1 200 OK"
-2026-05-11 07:52:54,457 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\f28ee25e6084ff886854b49e0a422f18c0c201eb54c115542d6e3da8ae1bff12\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:52:54,460 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- H_use = H
- ^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwarp.cpp:1603: error: (-215:Assertion faile), trying CPU fallback...
-2026-05-11 07:52:55,149 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 07:52:55,689 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:52:55,759 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (http://localhost:7860): Gradio Space render error: Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\gradio-space\App-que si funciona\app.py", line 346, in render_for_backend
- result = renderer.render(
- ^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Generandor de texturas\pipeline\renderer.py", line 114, in render
- H_use = H
- ^^^^
-cv2.error: OpenCV(4.13.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src\imgwarp.cpp:1603: error: (-215:Assertion faile
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 07:52:55,807 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 07:52:55,946 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.118s at 2026-05-11T13:52:55.946206+00:00
-2026-05-11 07:52:56,178 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:52:56,265 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/9c024d3c-af3e-45de-b8fc-f75c52365214 "HTTP/1.1 200 OK"
-2026-05-11 07:58:14,024 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:58:14.024477+00:00
-2026-05-11 07:58:16,411 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:58:18,656 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:58:19,099 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:58:20,950 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/d6909bc3-d587-4923-b9cc-fea28e2c8d28 "HTTP/1.1 200 OK"
-2026-05-11 07:58:20,952 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:58:23,172 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:58:25,403 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=d6909bc3-d587-4923-b9cc-fea28e2c8d28 "HTTP/1.1 200 OK"
-2026-05-11 07:58:33,857 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\987159a827f379f87e9c995518d269a518dfc37c640f16eff273692570e80f2a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:58:33,890 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.866s at 2026-05-11T13:58:33.890680+00:00
-2026-05-11 07:58:39,628 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:58:39.628872+00:00
-2026-05-11 07:58:42,010 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:58:44,244 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:58:44,677 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:58:46,514 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/546d7635-9190-4e6a-8700-3eeb733c62ec "HTTP/1.1 200 OK"
-2026-05-11 07:58:46,517 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:58:48,734 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:58:50,947 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=546d7635-9190-4e6a-8700-3eeb733c62ec "HTTP/1.1 200 OK"
-2026-05-11 07:58:58,709 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\1490927a61f8d8b34eec3b75cb02ef5d43f3b033f6d87ef87cfc26e65134ede6\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:58:58,747 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.120s at 2026-05-11T13:58:58.747902+00:00
-2026-05-11 07:59:05,334 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:59:05.334329+00:00
-2026-05-11 07:59:07,668 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:59:09,896 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:59:10,389 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:59:12,207 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:59:12,250 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/cc7231ca-ad09-4302-8f4f-6a5b3e8f7f48 "HTTP/1.1 200 OK"
-2026-05-11 07:59:14,441 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:59:16,674 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=cc7231ca-ad09-4302-8f4f-6a5b3e8f7f48 "HTTP/1.1 200 OK"
-2026-05-11 07:59:24,158 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\dbb87bc0ebe7e1ac10869ea5eaf4e0d0967caea93684547220068a8b63f78b18\image.webp "HTTP/1.1 200 OK"
-2026-05-11 07:59:24,195 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.861s at 2026-05-11T13:59:24.195698+00:00
-2026-05-11 07:59:46,877 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T13:59:46.876668+00:00
-2026-05-11 07:59:49,210 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 07:59:51,442 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 07:59:51,837 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 07:59:53,724 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/2ee1d35a-5d2e-4286-bee5-254903ec06db "HTTP/1.1 200 OK"
-2026-05-11 07:59:53,742 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 07:59:55,977 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 07:59:58,201 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=2ee1d35a-5d2e-4286-bee5-254903ec06db "HTTP/1.1 200 OK"
-2026-05-11 08:00:06,702 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\96c46a348b2065bb96f156676c26da6d1cdd056b209721019eca14fd25aa9084\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:00:06,740 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.864s at 2026-05-11T14:00:06.740786+00:00
-2026-05-11 08:00:34,547 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:00:34.547538+00:00
-2026-05-11 08:00:36,904 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:00:39,110 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:00:39,625 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:00:41,406 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:00:41,419 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/a01577fb-f880-4ee3-981e-3523977c1b8f "HTTP/1.1 200 OK"
-2026-05-11 08:00:43,642 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:00:45,881 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=a01577fb-f880-4ee3-981e-3523977c1b8f "HTTP/1.1 200 OK"
-2026-05-11 08:00:54,201 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\987159a827f379f87e9c995518d269a518dfc37c640f16eff273692570e80f2a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:00:54,241 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.694s at 2026-05-11T14:00:54.241384+00:00
-2026-05-11 08:01:26,566 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:01:26.566374+00:00
-2026-05-11 08:01:28,909 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:01:31,121 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:01:31,535 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:01:33,408 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/890ae067-0b8f-489c-9092-de4d752fa564 "HTTP/1.1 200 OK"
-2026-05-11 08:01:33,410 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:01:35,686 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:01:37,910 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=890ae067-0b8f-489c-9092-de4d752fa564 "HTTP/1.1 200 OK"
-2026-05-11 08:01:46,590 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\987159a827f379f87e9c995518d269a518dfc37c640f16eff273692570e80f2a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:01:46,624 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.059s at 2026-05-11T14:01:46.624359+00:00
-2026-05-11 08:05:00,704 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:05:00.704661+00:00
-2026-05-11 08:05:03,047 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:05:05,262 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:05:05,747 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:05:07,565 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/2db5d1bc-826f-4608-a63c-f1cda9a1d15b "HTTP/1.1 200 OK"
-2026-05-11 08:05:07,568 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:05:09,761 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:05:11,989 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=2db5d1bc-826f-4608-a63c-f1cda9a1d15b "HTTP/1.1 200 OK"
-2026-05-11 08:05:20,990 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\4dfeaf8db13e7e9ba4d4b373bcbd933917786b8c7251bc842c08f6d35f84e9b6\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:05:21,025 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.320s at 2026-05-11T14:05:21.025114+00:00
-2026-05-11 08:05:27,461 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 08:05:27,481 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 08:05:28,299 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 08:05:28,319 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 08:05:43,358 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:05:43.358604+00:00
-2026-05-11 08:05:46,015 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:05:48,276 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:05:48,995 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:05:50,631 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/38af6323-4f6a-4a33-9a0d-b5be47122b67 "HTTP/1.1 200 OK"
-2026-05-11 08:05:50,651 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:05:52,883 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:05:55,107 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=38af6323-4f6a-4a33-9a0d-b5be47122b67 "HTTP/1.1 200 OK"
-2026-05-11 08:06:06,052 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\144b6b0df63f1387ed840eceafe5d2b8f7db1b54609abf7d9a9daa6146354b23\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:06:06,092 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.734s at 2026-05-11T14:06:06.092403+00:00
-2026-05-11 08:07:29,154 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:07:29.154213+00:00
-2026-05-11 08:07:31,494 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:07:33,741 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:07:34,288 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:07:36,021 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/78566e56-129d-40a1-a82c-c9cc572a7804 "HTTP/1.1 200 OK"
-2026-05-11 08:07:36,023 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:07:38,257 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:07:40,458 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=78566e56-129d-40a1-a82c-c9cc572a7804 "HTTP/1.1 200 OK"
-2026-05-11 08:07:50,381 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\987159a827f379f87e9c995518d269a518dfc37c640f16eff273692570e80f2a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:07:50,417 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.263s at 2026-05-11T14:07:50.417306+00:00
-2026-05-11 08:08:10,461 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:08:10.461199+00:00
-2026-05-11 08:08:12,832 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:08:15,036 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:08:15,501 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:08:17,307 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/888913d0-8e69-4520-8597-cbad16ea3cd7 "HTTP/1.1 200 OK"
-2026-05-11 08:08:17,326 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:08:19,538 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:08:21,759 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=888913d0-8e69-4520-8597-cbad16ea3cd7 "HTTP/1.1 200 OK"
-2026-05-11 08:08:32,468 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7e6ff7bf200d28e66c23d75766cb649fc9597f09a8241b45d687be838bfa1085\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:08:32,507 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.047s at 2026-05-11T14:08:32.507337+00:00
-2026-05-11 08:08:54,411 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:08:54.411551+00:00
-2026-05-11 08:08:56,721 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:08:58,939 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:08:59,460 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:09:01,233 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:09:01,245 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/4896be72-16b2-4506-91d4-02a27828afaa "HTTP/1.1 200 OK"
-2026-05-11 08:09:03,498 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:09:05,729 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=4896be72-16b2-4506-91d4-02a27828afaa "HTTP/1.1 200 OK"
-2026-05-11 08:09:14,723 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\af4f3fa044a7204adb2c57ef603ef360e3362f85ed00457b04e34a491ec666e8\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:09:14,762 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.351s at 2026-05-11T14:09:14.762425+00:00
-2026-05-11 08:09:22,534 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:09:22.534016+00:00
-2026-05-11 08:09:24,926 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:09:27,143 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:09:27,537 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:09:29,474 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:09:29,486 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/fdf76cc5-d79f-46f3-b7db-ca3a2caaf6e3 "HTTP/1.1 200 OK"
-2026-05-11 08:09:31,704 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:09:33,945 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=fdf76cc5-d79f-46f3-b7db-ca3a2caaf6e3 "HTTP/1.1 200 OK"
-2026-05-11 08:09:44,576 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\4ae185acfa96321252f6fbee0b0c47d2ec48d2eb2d8c75a32c9484328757be0a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:09:44,617 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.084s at 2026-05-11T14:09:44.617998+00:00
-2026-05-11 08:23:54,106 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:23:54.106236+00:00
-2026-05-11 08:23:56,479 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:23:58,721 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:23:59,155 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:24:00,999 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/b27941ee-5963-4362-87b3-9d3fb7816292 "HTTP/1.1 200 OK"
-2026-05-11 08:24:01,017 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:24:03,224 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:24:05,462 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=b27941ee-5963-4362-87b3-9d3fb7816292 "HTTP/1.1 200 OK"
-2026-05-11 08:24:14,422 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\8971bd447e4d858b88a21e46216b5cac4da8a62df09b03a0bf9f69414bbfbc3f\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:24:14,459 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.353s at 2026-05-11T14:24:14.459186+00:00
-2026-05-11 08:24:40,154 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:24:40.154067+00:00
-2026-05-11 08:24:42,526 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:24:44,739 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:24:45,274 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:24:47,037 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/8b632d65-db4b-43c5-9d5b-176d77682b4d "HTTP/1.1 200 OK"
-2026-05-11 08:24:47,040 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:24:49,310 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:24:51,551 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=8b632d65-db4b-43c5-9d5b-176d77682b4d "HTTP/1.1 200 OK"
-2026-05-11 08:24:59,555 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\61c0bae5452a847a8eec8000fa86bbc92f38895c21cdff51293077db52049b47\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:24:59,609 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.455s at 2026-05-11T14:24:59.609461+00:00
-2026-05-11 08:25:13,535 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:25:13.535983+00:00
-2026-05-11 08:25:15,895 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:25:18,148 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:25:18,574 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:25:20,421 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/372a9de1-06ff-452e-a7b3-83db429db718 "HTTP/1.1 200 OK"
-2026-05-11 08:25:20,439 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:25:22,688 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:25:24,900 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=372a9de1-06ff-452e-a7b3-83db429db718 "HTTP/1.1 200 OK"
-2026-05-11 08:25:32,277 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\9f26aae03ee10ee70ed27a8dc4c77d335fdbc500fe706220a08fe067ac89b5b6\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:25:32,315 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.780s at 2026-05-11T14:25:32.315471+00:00
-2026-05-11 08:25:58,203 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:25:58.203693+00:00
-2026-05-11 08:26:00,549 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:26:02,797 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:26:03,350 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:26:05,122 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/32903b23-f36f-4d06-9872-5d0c4d5bfcc3 "HTTP/1.1 200 OK"
-2026-05-11 08:26:05,125 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:26:07,340 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:26:09,559 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=32903b23-f36f-4d06-9872-5d0c4d5bfcc3 "HTTP/1.1 200 OK"
-2026-05-11 08:26:17,125 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\bc2165e8db99168984496b0614c2e4d8acc3643d455b108fc45ea30816fdb1dc\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:26:17,174 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.970s at 2026-05-11T14:26:17.174476+00:00
-2026-05-11 08:26:31,042 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:26:31.041862+00:00
-2026-05-11 08:26:33,420 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:26:35,669 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:26:36,113 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:26:37,943 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/35433313-44fe-474d-ac2c-baae2bd6b83c "HTTP/1.1 200 OK"
-2026-05-11 08:26:37,944 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:26:40,182 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:26:42,407 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=35433313-44fe-474d-ac2c-baae2bd6b83c "HTTP/1.1 200 OK"
-2026-05-11 08:26:50,028 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\13d6ad76d05f5ab9405eb3cc735976accdd554831cb3965e518f5807fd200d0f\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:26:50,065 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.023s at 2026-05-11T14:26:50.065448+00:00
-2026-05-11 08:27:11,335 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:27:11.333972+00:00
-2026-05-11 08:27:13,771 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:27:16,029 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:27:16,580 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:27:18,321 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/4211851c-0dc2-4655-b683-f49ec03d8ac9 "HTTP/1.1 200 OK"
-2026-05-11 08:27:18,323 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:27:20,591 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:27:22,812 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=4211851c-0dc2-4655-b683-f49ec03d8ac9 "HTTP/1.1 200 OK"
-2026-05-11 08:27:30,852 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\d8411de62edcb305f56a0419285ff045890bac7da16c9e9ede06c82d82745b0a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:27:30,893 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.558s at 2026-05-11T14:27:30.893186+00:00
-2026-05-11 08:27:51,862 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:27:51.862857+00:00
-2026-05-11 08:27:54,224 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:27:56,451 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:27:56,857 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:27:58,745 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/527a694d-cb75-4325-87f2-650065362349 "HTTP/1.1 200 OK"
-2026-05-11 08:27:58,765 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:28:00,999 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:28:03,231 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=527a694d-cb75-4325-87f2-650065362349 "HTTP/1.1 200 OK"
-2026-05-11 08:28:10,922 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\dcff331be98568e3944f8891d2773167cc5ba35c0d80ebb3f7ccadd3ae7143b8\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:28:10,979 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.116s at 2026-05-11T14:28:10.979094+00:00
-2026-05-11 08:28:36,570 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:28:36.570999+00:00
-2026-05-11 08:28:38,940 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:28:41,158 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:28:41,673 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:28:43,459 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:28:43,473 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/6665df09-7e20-4692-8e06-b25a226b02e9 "HTTP/1.1 200 OK"
-2026-05-11 08:28:45,725 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:28:47,971 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=6665df09-7e20-4692-8e06-b25a226b02e9 "HTTP/1.1 200 OK"
-2026-05-11 08:28:55,196 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7e652a6d342a1acbbe68f5f4d23dd489bfe3a29e4600388234c84c71e17656f4\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:28:55,230 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.660s at 2026-05-11T14:28:55.230723+00:00
-2026-05-11 08:29:09,384 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:29:09.384232+00:00
-2026-05-11 08:29:11,748 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:29:13,956 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:29:14,366 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:29:16,238 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/1905794c-e373-4ead-a0d2-fc465a2f1e19 "HTTP/1.1 200 OK"
-2026-05-11 08:29:16,240 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:29:18,523 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:29:20,797 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=1905794c-e373-4ead-a0d2-fc465a2f1e19 "HTTP/1.1 200 OK"
-2026-05-11 08:29:28,204 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7e652a6d342a1acbbe68f5f4d23dd489bfe3a29e4600388234c84c71e17656f4\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:29:28,241 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.857s at 2026-05-11T14:29:28.241322+00:00
-2026-05-11 08:30:13,740 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:30:13.740739+00:00
-2026-05-11 08:30:16,122 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:30:18,329 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:30:18,779 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:30:20,610 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e5d6c046-75e4-4939-9e10-3726e7fd8618 "HTTP/1.1 200 OK"
-2026-05-11 08:30:20,626 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:30:22,858 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:30:25,099 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e5d6c046-75e4-4939-9e10-3726e7fd8618 "HTTP/1.1 200 OK"
-2026-05-11 08:30:33,721 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\83154e5b8e9edada63e73252bbc18818c0fe81e59aa4d5d99ade57189f3f6ecb\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:30:33,759 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.019s at 2026-05-11T14:30:33.759490+00:00
-2026-05-11 08:31:45,375 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:31:45.375338+00:00
-2026-05-11 08:31:47,767 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:31:49,996 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:31:50,484 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:31:52,277 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:31:52,291 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e8b5cc64-7b14-408c-b7a4-9a0e737fafbb "HTTP/1.1 200 OK"
-2026-05-11 08:31:54,499 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:31:56,704 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e8b5cc64-7b14-408c-b7a4-9a0e737fafbb "HTTP/1.1 200 OK"
-2026-05-11 08:32:04,546 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7e652a6d342a1acbbe68f5f4d23dd489bfe3a29e4600388234c84c71e17656f4\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:32:04,583 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.208s at 2026-05-11T14:32:04.583431+00:00
-2026-05-11 08:36:55,499 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:36:55.499185+00:00
-2026-05-11 08:36:57,817 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:37:00,047 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:37:00,610 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:37:02,336 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/1ee9b9f4-3788-440b-8a09-56d6d45b1ebb "HTTP/1.1 200 OK"
-2026-05-11 08:37:02,370 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:37:04,704 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:37:06,917 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=1ee9b9f4-3788-440b-8a09-56d6d45b1ebb "HTTP/1.1 200 OK"
-2026-05-11 08:37:14,472 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7e652a6d342a1acbbe68f5f4d23dd489bfe3a29e4600388234c84c71e17656f4\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:37:14,506 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.007s at 2026-05-11T14:37:14.506589+00:00
-2026-05-11 08:37:47,793 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:37:47.793918+00:00
-2026-05-11 08:37:50,139 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:37:52,351 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:37:52,777 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:37:54,618 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/1623e3e9-f0e5-421b-a669-9a00ed197b79 "HTTP/1.1 200 OK"
-2026-05-11 08:37:54,636 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:37:56,882 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:37:59,130 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=1623e3e9-f0e5-421b-a669-9a00ed197b79 "HTTP/1.1 200 OK"
-2026-05-11 08:38:06,584 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\dcff331be98568e3944f8891d2773167cc5ba35c0d80ebb3f7ccadd3ae7143b8\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:38:06,614 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.821s at 2026-05-11T14:38:06.614925+00:00
-2026-05-11 08:38:31,451 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:38:31.451279+00:00
-2026-05-11 08:38:33,782 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:38:36,013 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:38:36,647 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:38:38,335 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/34d35216-1db5-4a22-9acb-3a67e6aa0d17 "HTTP/1.1 200 OK"
-2026-05-11 08:38:38,337 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:38:40,583 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:38:42,800 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=34d35216-1db5-4a22-9acb-3a67e6aa0d17 "HTTP/1.1 200 OK"
-2026-05-11 08:38:50,479 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\dcff331be98568e3944f8891d2773167cc5ba35c0d80ebb3f7ccadd3ae7143b8\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:38:50,514 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.064s at 2026-05-11T14:38:50.514463+00:00
-2026-05-11 08:39:30,751 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:39:30.751474+00:00
-2026-05-11 08:39:33,103 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:39:35,346 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:39:35,794 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:39:37,684 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/6f204c23-4dad-44b5-89c8-e786b0b6a7ee "HTTP/1.1 200 OK"
-2026-05-11 08:39:37,702 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:39:39,947 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:39:42,157 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=6f204c23-4dad-44b5-89c8-e786b0b6a7ee "HTTP/1.1 200 OK"
-2026-05-11 08:39:50,741 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\dcff331be98568e3944f8891d2773167cc5ba35c0d80ebb3f7ccadd3ae7143b8\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:39:50,777 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.026s at 2026-05-11T14:39:50.777556+00:00
-2026-05-11 08:40:14,350 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:40:14.350006+00:00
-2026-05-11 08:40:16,661 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:40:18,880 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:40:19,481 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:40:21,222 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:40:21,234 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/7246b853-d6c2-49c5-9647-4ed0ab6849cb "HTTP/1.1 200 OK"
-2026-05-11 08:40:23,494 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:40:25,725 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=7246b853-d6c2-49c5-9647-4ed0ab6849cb "HTTP/1.1 200 OK"
-2026-05-11 08:40:33,271 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\1dcd45ddeba2ebff9bd449c7a8338f6e454b7692f87377fe41d578071fb2bdaf\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:40:33,329 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.980s at 2026-05-11T14:40:33.329328+00:00
-2026-05-11 08:40:43,390 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:40:43.390829+00:00
-2026-05-11 08:40:45,711 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:40:47,924 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:40:48,359 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:40:50,199 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/4271eef2-7dfd-4511-be21-26af887b01d4 "HTTP/1.1 200 OK"
-2026-05-11 08:40:50,202 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:40:52,424 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:40:54,620 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=4271eef2-7dfd-4511-be21-26af887b01d4 "HTTP/1.1 200 OK"
-2026-05-11 08:41:02,503 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\5cd5e002d8fff69167b7957e92368cb8e97468efaa3bdd4c6e860e7819dcaac9\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:41:02,539 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.148s at 2026-05-11T14:41:02.539391+00:00
-2026-05-11 08:41:34,387 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:41:34.387746+00:00
-2026-05-11 08:41:37,636 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:41:39,853 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:41:40,352 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:41:42,141 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/c3a6cd96-4566-4c39-932b-14ac11dc7a35 "HTTP/1.1 200 OK"
-2026-05-11 08:41:42,143 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:41:44,426 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:41:46,641 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=c3a6cd96-4566-4c39-932b-14ac11dc7a35 "HTTP/1.1 200 OK"
-2026-05-11 08:41:54,021 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\2d2f2f38366272d46f09704fba6cb8174362aa3b5b6cbba1e41367673524af8f\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:41:54,053 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.666s at 2026-05-11T14:41:54.053833+00:00
-2026-05-11 08:42:14,063 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:42:14.063192+00:00
-2026-05-11 08:42:17,270 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:42:19,473 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:42:19,909 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:42:21,750 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/fc9e49b4-003c-41a0-ae9c-b1ee6ea478d8 "HTTP/1.1 200 OK"
-2026-05-11 08:42:21,769 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:42:24,018 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:42:26,271 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=fc9e49b4-003c-41a0-ae9c-b1ee6ea478d8 "HTTP/1.1 200 OK"
-2026-05-11 08:42:33,865 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\79ee19af39aca7f0770059713359c1222bef67ba2dfa40219dc5ed09bc6a1bbf\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:42:33,899 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.835s at 2026-05-11T14:42:33.899026+00:00
-2026-05-11 08:42:55,777 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:42:55.777571+00:00
-2026-05-11 08:42:59,934 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:43:02,165 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:43:02,667 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:43:04,456 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/c5d546a8-fd90-4335-bcc4-721cd1ade7d7 "HTTP/1.1 200 OK"
-2026-05-11 08:43:04,457 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:43:06,765 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:43:08,990 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=c5d546a8-fd90-4335-bcc4-721cd1ade7d7 "HTTP/1.1 200 OK"
-2026-05-11 08:43:17,157 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\2f4d6d785e964920a977ba3b7450fd8272b489b92b55b4c53bfa0530117ba48d\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:43:17,194 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.417s at 2026-05-11T14:43:17.194197+00:00
-2026-05-11 08:43:32,204 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:43:32.204958+00:00
-2026-05-11 08:43:36,317 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:43:38,560 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:43:38,993 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:43:40,830 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:43:40,874 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9c477ff2-4fe2-49b0-a082-680fb13eaa2f "HTTP/1.1 200 OK"
-2026-05-11 08:43:43,189 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:43:45,428 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9c477ff2-4fe2-49b0-a082-680fb13eaa2f "HTTP/1.1 200 OK"
-2026-05-11 08:43:53,271 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\2f4d6d785e964920a977ba3b7450fd8272b489b92b55b4c53bfa0530117ba48d\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:43:53,308 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.104s at 2026-05-11T14:43:53.308454+00:00
-2026-05-11 08:44:02,706 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:44:02.706352+00:00
-2026-05-11 08:44:06,505 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:44:08,730 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:44:09,239 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:44:10,993 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/80f646be-2f3c-49fc-8960-5d4ccdc14d16 "HTTP/1.1 200 OK"
-2026-05-11 08:44:10,995 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:44:13,322 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:44:15,541 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=80f646be-2f3c-49fc-8960-5d4ccdc14d16 "HTTP/1.1 200 OK"
-2026-05-11 08:44:23,169 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\8898e235f41c3cd8f4a1c7945b36700a650cd05fd3638c36fc6f121eb57ef1c1\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:44:23,199 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.493s at 2026-05-11T14:44:23.199524+00:00
-2026-05-11 08:44:33,949 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:44:33.949552+00:00
-2026-05-11 08:44:37,648 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:44:39,892 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:44:40,338 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:44:42,176 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:44:42,189 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/1f820435-9611-4a1c-9379-5285d215750e "HTTP/1.1 200 OK"
-2026-05-11 08:44:44,484 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:44:46,717 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=1f820435-9611-4a1c-9379-5285d215750e "HTTP/1.1 200 OK"
-2026-05-11 08:44:54,137 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\1a4569321d5e6d439a93f05d4ca2972301cb8078dd1216659fa38c87da091446\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:44:54,167 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.217s at 2026-05-11T14:44:54.167079+00:00
-2026-05-11 08:45:22,200 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:45:22.200930+00:00
-2026-05-11 08:45:24,547 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:45:26,775 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:45:28,298 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:45:29,087 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:45:29,100 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/149a4d14-b4ab-4b7b-aa79-bbba3d15aaf9 "HTTP/1.1 200 OK"
-2026-05-11 08:45:31,372 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:45:33,608 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=149a4d14-b4ab-4b7b-aa79-bbba3d15aaf9 "HTTP/1.1 200 OK"
-2026-05-11 08:45:41,573 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\081aa45b7d139bf0925e3aef23b1bdb109de5d3ca4c1b7f0dfd21959b6002d38\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:45:41,621 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.421s at 2026-05-11T14:45:41.621940+00:00
-2026-05-11 08:46:03,424 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:46:03.424997+00:00
-2026-05-11 08:46:05,770 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:46:08,045 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:46:08,450 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:46:10,422 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/b4d726ca-cfbc-4833-aba1-0e79f08db999 "HTTP/1.1 200 OK"
-2026-05-11 08:46:10,424 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:46:12,685 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:46:14,942 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=b4d726ca-cfbc-4833-aba1-0e79f08db999 "HTTP/1.1 200 OK"
-2026-05-11 08:46:22,847 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\081aa45b7d139bf0925e3aef23b1bdb109de5d3ca4c1b7f0dfd21959b6002d38\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:46:22,882 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.458s at 2026-05-11T14:46:22.882967+00:00
-2026-05-11 08:50:47,465 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:50:47.465466+00:00
-2026-05-11 08:50:49,827 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:50:52,047 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:50:52,561 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:50:54,370 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:50:54,384 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/a239d19f-01e6-47df-b239-4d967ade84f2 "HTTP/1.1 200 OK"
-2026-05-11 08:50:56,627 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:50:58,849 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=a239d19f-01e6-47df-b239-4d967ade84f2 "HTTP/1.1 200 OK"
-2026-05-11 08:51:06,774 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\5486932d4813c760e4bd4a21404adf59b93a077c9f5009a3111680cb12dfb668\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:51:06,805 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.340s at 2026-05-11T14:51:06.805516+00:00
-2026-05-11 08:51:18,641 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:51:18.641886+00:00
-2026-05-11 08:51:21,018 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:51:23,241 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:51:23,656 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:51:25,496 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:51:25,509 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/f5edb8a3-3489-43ed-83e7-d57a70c15206 "HTTP/1.1 200 OK"
-2026-05-11 08:51:27,726 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:51:29,974 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=f5edb8a3-3489-43ed-83e7-d57a70c15206 "HTTP/1.1 200 OK"
-2026-05-11 08:51:37,230 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\43d6c985beaa52aa9f547d5cad18c47ac5ad1aad074537262134fb3ee33f6f30\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:51:37,265 INFO backend.segmentation: [APPLY_TEXTURE] DONE 18.624s at 2026-05-11T14:51:37.265824+00:00
-2026-05-11 08:51:49,441 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T14:51:49.441371+00:00
-2026-05-11 08:51:51,748 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 08:51:53,992 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 08:51:54,494 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 08:51:56,313 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/7bb87fda-5972-465a-9c5b-ff8cbe9f8658 "HTTP/1.1 200 OK"
-2026-05-11 08:51:56,316 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 08:51:58,542 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 08:52:00,803 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=7bb87fda-5972-465a-9c5b-ff8cbe9f8658 "HTTP/1.1 200 OK"
-2026-05-11 08:52:09,282 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\16c245147932b16e84272f485aa1e64a205303e1669fe3192f4040c5211bfe65\image.webp "HTTP/1.1 200 OK"
-2026-05-11 08:52:09,330 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.889s at 2026-05-11T14:52:09.330236+00:00
-2026-05-11 08:53:23,170 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01ed63ac1ef105a6100284"}, "remainingTimeMS": 30}
-2026-05-11 08:59:34,053 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-11 08:59:34,078 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 08:59:56,934 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01eeec350249fbce1c5550"}, "remainingTimeMS": 30}
-2026-05-11 09:00:03,790 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T15:00:03.790265+00:00
-2026-05-11 09:00:03,790 INFO backend.segmentation: [JOB 3f36b79482d04fdba69fa180e8d82b55] preparing_image progress=12
-2026-05-11 09:00:03,941 INFO backend.segmentation: [JOB 3f36b79482d04fdba69fa180e8d82b55] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 09:00:03,941 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
-2026-05-11 09:00:06,608 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 09:00:07,171 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:00:07,919 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/ac77bcfc-7232-4a63-8604-25d45c813fcc "HTTP/1.1 200 OK"
-2026-05-11 09:00:08,152 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:00:08,179 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:00:08,707 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:00:09,377 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=ac77bcfc-7232-4a63-8604-25d45c813fcc "HTTP/1.1 200 OK"
-2026-05-11 09:00:28,367 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/b1c58c6503edaf5fcdc01526aef97fe3d82c533e6dd5a577bdcf26f56d685366/image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:00:28,505 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=61
-2026-05-11 09:00:28,507 INFO backend.segmentation: [JOB 3f36b79482d04fdba69fa180e8d82b55] saving_masks progress=92
-2026-05-11 09:00:28,643 INFO backend.segmentation: [JOB 3f36b79482d04fdba69fa180e8d82b55] segments_meta saved (61 segments)
-2026-05-11 09:00:28,643 INFO backend.segmentation: [JOB 3f36b79482d04fdba69fa180e8d82b55] done mask_count=61
-2026-05-11 09:00:28,643 INFO backend.segmentation: [UPLOAD_BG] DONE 24.854s at 2026-05-11T15:00:28.643926+00:00
-2026-05-11 09:00:28,643 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 09:00:30,184 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01ef0e350249fbce1c5551"}, "remainingTimeMS": 30}
-2026-05-11 09:00:38,461 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:00:38.461550+00:00
-2026-05-11 09:00:41,507 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 09:00:42,158 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:00:42,658 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:00:42,805 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/f0a07ce3-8ce5-479c-8a9b-581234198f5c "HTTP/1.1 200 OK"
-2026-05-11 09:00:42,967 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:01:03,284 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:01:03,918 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=f0a07ce3-8ce5-479c-8a9b-581234198f5c "HTTP/1.1 200 OK"
-2026-05-11 09:01:04,561 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/23314345710bf7dd21e8b07d1fa654a32440adfbed83aaf2feef6dab22f1a1ca/image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:01:04,701 WARNING services.gradio_client_service: GPU Space render failed (Gradio Space render error: import_failed), trying CPU fallback...
-2026-05-11 09:01:05,471 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 09:01:06,197 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:01:06,263 WARNING backend.segmentation: Remote render via Gradio failed, falling back to local: Both Gradio Spaces render failed.
- GPU (https://eduardo4547-hyper-reality-sam2-gpu.hf.space): Gradio Space render error: import_failed
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Cannot find a function with `api_name`: /render.
-2026-05-11 09:01:06,697 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:01:06,790 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\hyper-reality-1778254222964.jpg
-2026-05-11 09:01:06,889 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/7549c987-8bbe-4e41-8da5-e08804270246 "HTTP/1.1 200 OK"
-2026-05-11 09:01:07,106 INFO backend.segmentation: [APPLY_TEXTURE] DONE 28.645s at 2026-05-11T15:01:07.106365+00:00
-2026-05-11 09:02:27,357 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 09:02:27,381 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 09:02:55,966 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:02:55.966358+00:00
-2026-05-11 09:02:58,857 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:03:01,243 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:03:02,224 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:03:03,744 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/65b7a704-e4c5-4883-a51e-20f4487db3f8 "HTTP/1.1 200 OK"
-2026-05-11 09:03:03,778 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:03:06,155 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:03:08,583 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=65b7a704-e4c5-4883-a51e-20f4487db3f8 "HTTP/1.1 200 OK"
-2026-05-11 09:03:18,771 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\dee0b06b7f3205e519abee75a0fd781fbc1d05fe893f21dc1d9562e0934ee509\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:03:18,848 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.883s at 2026-05-11T15:03:18.848958+00:00
-2026-05-11 09:04:16,293 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:04:16.293028+00:00
-2026-05-11 09:04:18,844 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:04:21,221 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:04:21,710 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:04:23,638 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:04:23,649 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/76dab94b-b9d8-44a8-b036-03e15f1fe2bd "HTTP/1.1 200 OK"
-2026-05-11 09:04:25,990 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:04:28,339 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=76dab94b-b9d8-44a8-b036-03e15f1fe2bd "HTTP/1.1 200 OK"
-2026-05-11 09:04:43,718 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\29aec395f88d98858911bde6acc6466dbf45da9fc592b83acb5a57d64ec466c4\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:04:43,757 INFO backend.segmentation: [APPLY_TEXTURE] DONE 27.465s at 2026-05-11T15:04:43.757815+00:00
-2026-05-11 09:05:26,410 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:05:26.410908+00:00
-2026-05-11 09:05:28,958 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:05:31,343 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:05:31,834 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:05:33,794 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:05:33,805 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/5d38c3f7-4809-4b8a-b019-e5e4282ccf57 "HTTP/1.1 200 OK"
-2026-05-11 09:05:36,147 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:05:38,539 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=5d38c3f7-4809-4b8a-b019-e5e4282ccf57 "HTTP/1.1 200 OK"
-2026-05-11 09:05:47,129 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\1eb839c12f77649f31745595b80bfae381ebbfe625276d80619558c27fc4100c\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:05:47,169 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.759s at 2026-05-11T15:05:47.169527+00:00
-2026-05-11 09:07:00,832 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:07:00.832585+00:00
-2026-05-11 09:07:03,220 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:07:05,487 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:07:05,958 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:07:07,823 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/d9226b2c-d5c9-4753-831e-11b179671135 "HTTP/1.1 200 OK"
-2026-05-11 09:07:07,825 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:07:10,066 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:07:12,331 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=d9226b2c-d5c9-4753-831e-11b179671135 "HTTP/1.1 200 OK"
-2026-05-11 09:07:21,277 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\0c7b3464bcf12e33aeec3d97d77559a8c2e926abb18ebf01ce372c31ed7c3bd1\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:07:21,316 INFO backend.segmentation: [APPLY_TEXTURE] DONE 20.485s at 2026-05-11T15:07:21.316788+00:00
-2026-05-11 09:07:39,324 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01f0bbb29f424d7c4dde31"}, "remainingTimeMS": 30}
-2026-05-11 09:07:56,182 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T15:07:56.182552+00:00
-2026-05-11 09:07:56,182 INFO backend.segmentation: [JOB b454dca58f474e8aaed0a05b80f7f04c] preparing_image progress=12
-2026-05-11 09:07:56,226 INFO backend.segmentation: [JOB b454dca58f474e8aaed0a05b80f7f04c] segmenting_with_sam2 progress=30 estimated_seconds=94.01599999999999
-2026-05-11 09:07:56,227 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 09:07:58,573 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:08:00,842 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:08:01,274 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:08:03,206 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/7763e966-1bc8-4a49-87f8-9d780f488054 "HTTP/1.1 200 OK"
-2026-05-11 09:08:03,210 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:08:05,435 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:08:07,659 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=7763e966-1bc8-4a49-87f8-9d780f488054 "HTTP/1.1 200 OK"
-2026-05-11 09:10:17,025 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\56758f540e1c547de434b369fae158810fde033fe3650199c54eecf9fd68ac46\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:10:17,041 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=58
-2026-05-11 09:10:17,043 INFO backend.segmentation: [JOB b454dca58f474e8aaed0a05b80f7f04c] saving_masks progress=92
-2026-05-11 09:10:17,288 INFO backend.segmentation: [JOB b454dca58f474e8aaed0a05b80f7f04c] segments_meta saved (58 segments)
-2026-05-11 09:10:17,288 INFO backend.segmentation: [JOB b454dca58f474e8aaed0a05b80f7f04c] done mask_count=58
-2026-05-11 09:10:17,288 INFO backend.segmentation: [UPLOAD_BG] DONE 141.106s at 2026-05-11T15:10:17.288427+00:00
-2026-05-11 09:10:17,288 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 09:10:20,270 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a01f15cb29f424d7c4dde32"}, "remainingTimeMS": 30}
-2026-05-11 09:10:34,161 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:10:34.161901+00:00
-2026-05-11 09:10:38,153 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:10:40,400 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:10:40,914 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:10:42,826 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/5de7167f-1177-4093-ab8e-02c57efd6725 "HTTP/1.1 200 OK"
-2026-05-11 09:10:42,829 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:10:45,122 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:10:47,370 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=5de7167f-1177-4093-ab8e-02c57efd6725 "HTTP/1.1 200 OK"
-2026-05-11 09:10:55,340 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\08d0c8382b41a8cb1afd5ca2933402871534ace900c8c25dbc04dfb0c7fac838\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:10:55,382 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.221s at 2026-05-11T15:10:55.382977+00:00
-2026-05-11 09:11:14,068 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:11:14.068589+00:00
-2026-05-11 09:11:18,054 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:11:20,338 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:11:20,755 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:11:22,681 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/aa5ffe1e-cf6f-4a59-8b5d-9f8f844ccf35 "HTTP/1.1 200 OK"
-2026-05-11 09:11:22,685 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:11:25,069 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:11:27,403 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=aa5ffe1e-cf6f-4a59-8b5d-9f8f844ccf35 "HTTP/1.1 200 OK"
-2026-05-11 09:11:37,029 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\0d515bdb32e656b506e326f168d5fb2ca05cba9bc53cb511e42dd260d62301f7\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:11:37,090 INFO backend.segmentation: [APPLY_TEXTURE] DONE 23.022s at 2026-05-11T15:11:37.090970+00:00
-2026-05-11 09:11:49,760 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:11:49.760016+00:00
-2026-05-11 09:11:53,744 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:11:56,074 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:11:56,569 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:11:58,419 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/859f6de7-07f6-480e-9492-6d73356bbf4c "HTTP/1.1 200 OK"
-2026-05-11 09:11:58,437 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:12:00,755 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:12:03,037 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=859f6de7-07f6-480e-9492-6d73356bbf4c "HTTP/1.1 200 OK"
-2026-05-11 09:12:11,490 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\b849e3480a5febb83d4fb8ebb52ed500f40df99c6d5f8a20108eed00ab315153\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:12:11,536 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.777s at 2026-05-11T15:12:11.536831+00:00
-2026-05-11 09:12:37,043 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:12:37.042144+00:00
-2026-05-11 09:12:41,791 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:12:44,105 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:12:44,550 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:12:46,524 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/3deaf637-5ada-4a54-b02b-6b588dec87a5 "HTTP/1.1 200 OK"
-2026-05-11 09:12:46,572 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:12:48,966 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:12:51,228 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=3deaf637-5ada-4a54-b02b-6b588dec87a5 "HTTP/1.1 200 OK"
-2026-05-11 09:13:00,100 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\25d12f1c2a9c336c1b887ee7e0398b601b42b7565509d9dfaf16f582b2ca907a\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:13:00,146 INFO backend.segmentation: [APPLY_TEXTURE] DONE 23.104s at 2026-05-11T15:13:00.146803+00:00
-2026-05-11 09:13:10,087 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:13:10.087403+00:00
-2026-05-11 09:13:14,037 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:13:16,298 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:13:16,857 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:13:18,704 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/f345958a-a52f-4849-b880-ca96676d7386 "HTTP/1.1 200 OK"
-2026-05-11 09:13:18,707 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:13:21,027 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:13:23,316 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=f345958a-a52f-4849-b880-ca96676d7386 "HTTP/1.1 200 OK"
-2026-05-11 09:13:33,722 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\08d0c8382b41a8cb1afd5ca2933402871534ace900c8c25dbc04dfb0c7fac838\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:13:33,775 INFO backend.segmentation: [APPLY_TEXTURE] DONE 23.688s at 2026-05-11T15:13:33.775460+00:00
-2026-05-11 09:14:26,391 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:14:26.391654+00:00
-2026-05-11 09:14:30,328 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:14:32,580 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:14:33,093 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:14:34,893 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/71de3a6c-9c39-4178-83cd-abe0743e32ba "HTTP/1.1 200 OK"
-2026-05-11 09:14:34,911 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:14:37,273 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:14:39,540 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=71de3a6c-9c39-4178-83cd-abe0743e32ba "HTTP/1.1 200 OK"
-2026-05-11 09:14:47,492 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\29b96e9889e909ab544c7e84938cfd34a01f8b5169111b550e573aa6b0b57b67\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:14:47,538 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.146s at 2026-05-11T15:14:47.538602+00:00
-2026-05-11 09:15:04,802 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:15:04.802101+00:00
-2026-05-11 09:15:09,381 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:15:11,700 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:15:12,871 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:15:14,058 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:15:14,069 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/94003c7a-84a3-4b8f-a66a-5460381f8d8b "HTTP/1.1 200 OK"
-2026-05-11 09:15:16,401 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:15:18,674 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=94003c7a-84a3-4b8f-a66a-5460381f8d8b "HTTP/1.1 200 OK"
-2026-05-11 09:15:30,091 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\ccbd80baf8b8064609e97da4a8f97ee6947813f3ee88f8e9057e58426278046d\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:15:30,167 INFO backend.segmentation: [APPLY_TEXTURE] DONE 25.366s at 2026-05-11T15:15:30.167665+00:00
-2026-05-11 09:15:54,665 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T15:15:54.665708+00:00
-2026-05-11 09:15:54,666 INFO backend.segmentation: [JOB 14bc0a9c8c784733b22bee657e4a131f] preparing_image progress=12
-2026-05-11 09:15:55,008 INFO backend.segmentation: [JOB 14bc0a9c8c784733b22bee657e4a131f] segmenting_with_sam2 progress=30 estimated_seconds=105.8432
-2026-05-11 09:15:55,008 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 09:15:57,374 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:15:59,723 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:16:00,285 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:16:02,177 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/9897633b-f106-45fb-b9a4-78e34f8ccf0f "HTTP/1.1 200 OK"
-2026-05-11 09:16:02,181 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:16:04,558 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:16:07,298 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=9897633b-f106-45fb-b9a4-78e34f8ccf0f "HTTP/1.1 200 OK"
-2026-05-11 09:18:04,401 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\fe7e296f49e3953b396fc8aeb7f4885b83ba4201a8d3f8d451ff0339d7391c52\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:18:04,415 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=74
-2026-05-11 09:18:04,415 INFO backend.segmentation: [JOB 14bc0a9c8c784733b22bee657e4a131f] saving_masks progress=92
-2026-05-11 09:18:04,694 INFO backend.segmentation: [JOB 14bc0a9c8c784733b22bee657e4a131f] segments_meta saved (74 segments)
-2026-05-11 09:18:04,694 INFO backend.segmentation: [JOB 14bc0a9c8c784733b22bee657e4a131f] done mask_count=74
-2026-05-11 09:18:04,694 INFO backend.segmentation: [UPLOAD_BG] DONE 130.029s at 2026-05-11T15:18:04.694806+00:00
-2026-05-11 09:18:04,694 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 09:18:14,220 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:18:14.220091+00:00
-2026-05-11 09:18:18,813 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:18:21,048 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:18:21,523 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:18:23,424 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/772ed342-ed42-4191-8bab-4d187a9eedab "HTTP/1.1 200 OK"
-2026-05-11 09:18:23,426 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:18:25,820 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:18:28,063 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=772ed342-ed42-4191-8bab-4d187a9eedab "HTTP/1.1 200 OK"
-2026-05-11 09:18:36,513 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\0bf73bbc2dfb1dfdbce2bd6f148711a867920edab77a04c28005b7b51bec563e\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:18:36,580 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.361s at 2026-05-11T15:18:36.580363+00:00
-2026-05-11 09:18:51,861 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:18:51.861615+00:00
-2026-05-11 09:18:56,659 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:18:58,950 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:18:59,388 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:19:01,288 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:19:01,301 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/02aba9f9-2d22-411e-ada8-d1649e5bf879 "HTTP/1.1 200 OK"
-2026-05-11 09:19:03,716 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:19:05,979 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=02aba9f9-2d22-411e-ada8-d1649e5bf879 "HTTP/1.1 200 OK"
-2026-05-11 09:19:15,134 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\6b114b0f1869c839104ad71d04efe8b1c42c2ada6548a24dd01c0f1195554552\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:19:15,204 INFO backend.segmentation: [APPLY_TEXTURE] DONE 23.342s at 2026-05-11T15:19:15.204045+00:00
-2026-05-11 09:19:25,506 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T15:19:25.506664+00:00
-2026-05-11 09:19:25,506 INFO backend.segmentation: [JOB 306b039e65b146b69dd8b75ba05c88b9] preparing_image progress=12
-2026-05-11 09:19:25,535 INFO backend.segmentation: [JOB 306b039e65b146b69dd8b75ba05c88b9] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 09:19:25,536 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 09:19:27,881 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:19:30,133 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:19:30,690 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:19:32,418 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/8b3cfccf-fbce-49ba-9886-7e60d3a4f9e5 "HTTP/1.1 200 OK"
-2026-05-11 09:19:32,420 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:19:34,631 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:19:36,913 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=8b3cfccf-fbce-49ba-9886-7e60d3a4f9e5 "HTTP/1.1 200 OK"
-2026-05-11 09:21:11,357 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\fdba6c817445c957bf57f0f37d255298685625d2847381414fb08306405b69d3\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:21:11,374 INFO services.gradio_client_service: Gradio Space segmentation: entorno=gpu motor=SAM Auto (GPU - ZeroGPU) mask_count=61
-2026-05-11 09:21:11,374 INFO backend.segmentation: [JOB 306b039e65b146b69dd8b75ba05c88b9] saving_masks progress=92
-2026-05-11 09:21:11,543 INFO backend.segmentation: [JOB 306b039e65b146b69dd8b75ba05c88b9] segments_meta saved (61 segments)
-2026-05-11 09:21:11,545 INFO backend.segmentation: [JOB 306b039e65b146b69dd8b75ba05c88b9] done mask_count=61
-2026-05-11 09:21:11,545 INFO backend.segmentation: [UPLOAD_BG] DONE 106.039s at 2026-05-11T15:21:11.545131+00:00
-2026-05-11 09:21:11,545 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 09:21:23,322 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:21:23.322567+00:00
-2026-05-11 09:21:29,196 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:21:31,524 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:21:32,195 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:21:33,987 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:21:34,012 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/39c2dd92-8c58-4707-8071-1e597e73530f "HTTP/1.1 200 OK"
-2026-05-11 09:21:36,542 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:21:38,902 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=39c2dd92-8c58-4707-8071-1e597e73530f "HTTP/1.1 200 OK"
-2026-05-11 09:21:55,622 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\0e52d54170d30b6d09308ddfb46b306d2afc5dfc6e4026ae5f907d07f6ed6436\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:21:55,666 INFO backend.segmentation: [APPLY_TEXTURE] DONE 32.343s at 2026-05-11T15:21:55.666246+00:00
-2026-05-11 09:22:14,587 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:22:14.587711+00:00
-2026-05-11 09:22:19,127 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:22:21,368 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:22:21,771 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:22:23,686 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/40e6db7c-cb8a-4621-8be5-28c640b19c75 "HTTP/1.1 200 OK"
-2026-05-11 09:22:23,705 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:22:26,139 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:22:28,393 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=40e6db7c-cb8a-4621-8be5-28c640b19c75 "HTTP/1.1 200 OK"
-2026-05-11 09:22:37,108 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\61825b19b734baf326a7a6a6d9a5f9ff601d6f3413738e4bb22c0a882ef83af7\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:22:37,145 INFO backend.segmentation: [APPLY_TEXTURE] DONE 22.557s at 2026-05-11T15:22:37.145209+00:00
-2026-05-11 09:22:45,279 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:22:45.279333+00:00
-2026-05-11 09:22:49,178 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:22:51,446 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:22:51,982 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:22:53,829 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/d7b9735a-6e78-4fe3-8a42-109575b316a7 "HTTP/1.1 200 OK"
-2026-05-11 09:22:53,830 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:22:56,146 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:22:58,396 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=d7b9735a-6e78-4fe3-8a42-109575b316a7 "HTTP/1.1 200 OK"
-2026-05-11 09:23:06,755 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\9d8eab6a52e56697cb95b20e61dcc73246f45f3e0c14549e980ea1d8ab5411db\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:23:06,791 INFO backend.segmentation: [APPLY_TEXTURE] DONE 21.513s at 2026-05-11T15:23:06.791913+00:00
-2026-05-11 09:23:26,777 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-05-11T15:23:26.777258+00:00
-2026-05-11 09:23:29,185 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 09:23:31,437 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 09:23:31,854 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 09:23:33,733 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/28c290d8-f558-42f2-9807-2eb9a8ee03aa "HTTP/1.1 200 OK"
-2026-05-11 09:23:33,753 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 09:23:36,010 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 09:23:38,255 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=28c290d8-f558-42f2-9807-2eb9a8ee03aa "HTTP/1.1 200 OK"
-2026-05-11 09:23:46,257 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\dee0b06b7f3205e519abee75a0fd781fbc1d05fe893f21dc1d9562e0934ee509\image.webp "HTTP/1.1 200 OK"
-2026-05-11 09:23:46,296 INFO backend.segmentation: [APPLY_TEXTURE] DONE 19.519s at 2026-05-11T15:23:46.296656+00:00
-2026-05-11 15:49:44,491 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 15:49:44,515 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:05:50,322 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:05:50,344 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:05:51,265 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:05:51,287 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:06:23,124 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0252df14d88316415be4cb"}, "remainingTimeMS": 30}
-2026-05-11 16:06:28,118 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T22:06:28.118464+00:00
-2026-05-11 16:06:28,119 INFO backend.segmentation: [JOB 4209423fe883434baa0fc2b4775b34d6] preparing_image progress=12
-2026-05-11 16:06:28,171 INFO backend.segmentation: [JOB 4209423fe883434baa0fc2b4775b34d6] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 16:06:28,171 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 16:06:30,746 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 16:06:32,996 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 16:06:33,002 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-11 16:06:33,003 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 16:06:33,744 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 16:06:33,787 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 16:06:34,375 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 16:06:34,641 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 16:06:35,061 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/4139b1e8-0885-4eda-aa82-fd71c176ecae "HTTP/1.1 200 OK"
-2026-05-11 16:06:35,253 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 16:06:35,340 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/cedee08b-ac8c-488b-8942-f0fa0569e68f "HTTP/1.1 200 OK"
-2026-05-11 16:06:35,781 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 16:06:36,314 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/data?session_hash=4139b1e8-0885-4eda-aa82-fd71c176ecae "HTTP/1.1 200 OK"
-2026-05-11 16:09:43,045 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/file=/tmp/gradio/6c61c4453525a0cc97a55213f8ab16e24157b02ad4d2cba459d14b95c79ac6ab/image.webp "HTTP/1.1 200 OK"
-2026-05-11 16:09:43,192 INFO services.gradio_client_service: Gradio Space segmentation: entorno=cpu motor=SAM Auto (CPU) mask_count=61
-2026-05-11 16:09:43,192 INFO backend.segmentation: [JOB 4209423fe883434baa0fc2b4775b34d6] saving_masks progress=92
-2026-05-11 16:09:43,346 INFO backend.segmentation: [JOB 4209423fe883434baa0fc2b4775b34d6] segments_meta saved (61 segments)
-2026-05-11 16:09:43,346 INFO backend.segmentation: [JOB 4209423fe883434baa0fc2b4775b34d6] done mask_count=61
-2026-05-11 16:09:43,347 INFO backend.segmentation: [UPLOAD_BG] DONE 195.229s at 2026-05-11T22:09:43.347393+00:00
-2026-05-11 16:09:43,347 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:10:57,618 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:10:57,643 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:11:03,882 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T22:11:03.882445+00:00
-2026-05-11 16:11:03,882 INFO backend.segmentation: [JOB 180176892d89444989453d181df30ddb] preparing_image progress=12
-2026-05-11 16:11:03,911 INFO backend.segmentation: [JOB 180176892d89444989453d181df30ddb] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 16:11:03,912 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 16:11:06,418 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
-2026-05-11 16:11:08,689 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 16:11:08,691 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
-2026-05-11 16:11:08,691 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 16:11:09,507 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 16:11:09,518 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/config "HTTP/1.1 200 OK"
-2026-05-11 16:11:10,059 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
-2026-05-11 16:11:10,323 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
-2026-05-11 16:11:10,728 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/heartbeat/e5da0f2d-1f57-48c5-bb1e-66e9f7fec1b0 "HTTP/1.1 200 OK"
-2026-05-11 16:11:10,911 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
-2026-05-11 16:11:11,012 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e58b3da1-7be9-42cf-81f6-8c546e39f4be "HTTP/1.1 200 OK"
-2026-05-11 16:11:11,463 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
-2026-05-11 16:11:12,023 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/queue/data?session_hash=e5da0f2d-1f57-48c5-bb1e-66e9f7fec1b0 "HTTP/1.1 200 OK"
-2026-05-11 16:11:16,110 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a025404a5cb3b148eec3621"}, "remainingTimeMS": 30}
-2026-05-11 16:11:16,115 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a025404a5cb3b148eec3621"}, "remainingTimeMS": 30}
-2026-05-11 16:14:13,810 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-cpu.hf.space/gradio_api/file=/tmp/gradio/6c61c4453525a0cc97a55213f8ab16e24157b02ad4d2cba459d14b95c79ac6ab/image.webp "HTTP/1.1 200 OK"
-2026-05-11 16:14:14,003 INFO services.gradio_client_service: Gradio Space segmentation: entorno=cpu motor=SAM Auto (CPU) mask_count=61
-2026-05-11 16:14:14,004 INFO backend.segmentation: [JOB 180176892d89444989453d181df30ddb] saving_masks progress=92
-2026-05-11 16:14:14,147 INFO backend.segmentation: [JOB 180176892d89444989453d181df30ddb] segments_meta saved (61 segments)
-2026-05-11 16:14:14,147 INFO backend.segmentation: [JOB 180176892d89444989453d181df30ddb] done mask_count=61
-2026-05-11 16:14:14,148 INFO backend.segmentation: [UPLOAD_BG] DONE 190.266s at 2026-05-11T22:14:14.148092+00:00
-2026-05-11 16:14:14,148 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:14:15,680 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:14:15,699 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:14:16,643 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:14:16,662 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:14:16,931 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0254b8ea5401b51d0278a3"}, "remainingTimeMS": 30}
-2026-05-11 16:14:16,932 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0254b8ea5401b51d0278a3"}, "remainingTimeMS": 30}
-2026-05-11 16:14:49,311 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:14:49,337 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:15:23,879 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0254fbaa6db1d011b1e697"}, "remainingTimeMS": 30}
-2026-05-11 16:15:24,106 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0254fcaa6db1d011b1e698"}, "remainingTimeMS": 30}
-2026-05-11 16:15:24,108 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0254fcaa6db1d011b1e698"}, "remainingTimeMS": 30}
-2026-05-11 16:27:59,753 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=(not set — using local SAM2)
-2026-05-11 16:27:59,757 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=(not set — using local SAM2)
-2026-05-11 16:27:59,758 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=(not set — using local SAM2)
-2026-05-11 16:27:59,806 INFO backend.segmentation: [SAM2] Checking model paths:
-2026-05-11 16:27:59,806 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,807 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,807 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,807 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,808 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,808 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,809 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,809 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,809 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,809 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,810 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,810 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,810 INFO backend.segmentation: [SAM2] Checking model paths:
-2026-05-11 16:27:59,810 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,811 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,811 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,811 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,811 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,811 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,811 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,811 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,811 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,812 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,812 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,812 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,812 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,812 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,812 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,812 INFO backend.segmentation: [SAM2] Checking model paths:
-ve\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,813 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,813 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,813 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,813 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,813 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,813 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,813 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2_hiera_large.pt | exists=False
+2026-04-29 20:12:40,375 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-29 20:13:22,434 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69f2bac20e0544b45d45e6f1"}, "remainingTimeMS": 30}
+2026-04-29 20:13:53,491 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:13:53.491443+00:00
+2026-04-29 20:13:53,492 INFO backend.segmentation: [JOB 667a8562af1044a6926d53449b625dd6] preparing_image progress=12
+2026-04-29 20:13:53,743 INFO backend.segmentation: [JOB 667a8562af1044a6926d53449b625dd6] segmenting_with_sam2 progress=30 estimated_seconds=51.939840000000004
+2026-04-29 20:13:56,153 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-29 20:13:56,625 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-29 20:13:56,675 WARNING services.gradio_client_service: Gradio Space call failed, falling back to local SAM2: Cannot find a function with `api_name`: /segment.
+2026-04-29 20:13:56,675 INFO backend.segmentation: [SAM2_GENERATE] START at 2026-04-30T02:13:56.675848+00:00
+2026-04-29 20:13:56,687 INFO backend.segmentation: [SAM2] Mask generator not loaded; attempting on-demand load.
+2026-04-29 20:13:56,687 WARNING backend.segmentation: [SAM2] torch not installed — SAM2 unavailable (using Gradio Space)
+2026-04-29 20:13:56,687 ERROR backend.segmentation: [JOB 667a8562af1044a6926d53449b625dd6] failed: 500: torch not installed — SAM2 unavailable (using Gradio Space)
+Traceback (most recent call last):
+ File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 145, in run_upload_job
+ label_map, mask_count = generate_label_map(image_rgb)
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\scene_service.py", line 134, in generate_label_map
+ generator = get_sam2_mask_generator()
+ ^^^^^^^^^^^^^^^^^^^^^^^^^
+ File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\sam2_service.py", line 184, in get_sam2_mask_generator
+ raise HTTPException(status_code=500, detail=detail)
+fastapi.exceptions.HTTPException: 500: torch not installed — SAM2 unavailable (using Gradio Space)
+2026-04-29 20:13:56,689 INFO backend.segmentation: [UPLOAD_BG] DONE 3.196s at 2026-04-30T02:13:56.689353+00:00
+2026-04-29 20:13:56,689 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-29 20:13:57,044 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-29 20:13:57,163 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/68121945-8a97-442e-8cbb-59cd817f9df3 "HTTP/1.1 200 OK"
+2026-04-29 20:16:38,951 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-29 20:16:55,032 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:16:55.032702+00:00
+2026-04-29 20:16:55,032 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] preparing_image progress=12
+2026-04-29 20:16:55,089 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] segmenting_with_sam2 progress=30 estimated_seconds=51.939840000000004
+2026-04-29 20:16:57,866 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
+2026-04-29 20:17:00,098 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-29 20:17:00,613 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-29 20:17:02,540 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/06d3302a-135c-423c-8294-e950bff0a17a "HTTP/1.1 200 OK"
+2026-04-29 20:17:02,542 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-29 20:17:04,774 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-29 20:17:07,079 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=06d3302a-135c-423c-8294-e950bff0a17a "HTTP/1.1 200 OK"
+2026-04-29 20:17:26,593 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\b17b68f6472ad2c6c0bb7499f231e242c50b344237d319bd3b45d56ef2d488aa\image.webp "HTTP/1.1 200 OK"
+2026-04-29 20:17:26,607 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🌳 Terraza / Patio / Jardín motor=Híbrido Arquitectura (Cityscapes Grande + DINO Pequeño) mask_count=20
+2026-04-29 20:17:26,607 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] saving_masks progress=92
+2026-04-29 20:17:26,690 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] segments_meta saved (20 segments)
+2026-04-29 20:17:26,690 INFO backend.segmentation: [JOB 50d2907ecb844a3fafc2f8a5247620ea] done mask_count=20
+2026-04-29 20:17:26,691 INFO backend.segmentation: [UPLOAD_BG] DONE 31.658s at 2026-04-30T02:17:26.691033+00:00
+2026-04-29 20:17:26,691 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-29 20:17:45,867 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:17:45.867306+00:00
+2026-04-29 20:17:46,402 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
+2026-04-29 20:17:46,702 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.835s at 2026-04-30T02:17:46.702156+00:00
+2026-04-29 20:17:50,496 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:17:50.496976+00:00
+2026-04-29 20:17:50,819 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
+2026-04-29 20:17:50,985 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.488s at 2026-04-30T02:17:50.985122+00:00
+2026-04-29 20:17:54,307 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:17:54.307539+00:00
+2026-04-29 20:17:54,768 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
+2026-04-29 20:17:54,931 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.624s at 2026-04-30T02:17:54.931489+00:00
+2026-04-29 20:17:56,247 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:17:56.247254+00:00
+2026-04-29 20:17:56,728 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
+2026-04-29 20:17:56,898 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.651s at 2026-04-30T02:17:56.898353+00:00
+2026-04-29 20:18:00,146 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:00.146989+00:00
+2026-04-29 20:18:00,616 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
+2026-04-29 20:18:00,782 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.636s at 2026-04-30T02:18:00.782444+00:00
+2026-04-29 20:18:05,560 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:05.560412+00:00
+2026-04-29 20:18:06,116 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
+2026-04-29 20:18:06,272 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.712s at 2026-04-30T02:18:06.272748+00:00
+2026-04-29 20:18:11,868 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:18:11.868080+00:00
+2026-04-29 20:18:11,868 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] preparing_image progress=12
+2026-04-29 20:18:11,941 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-29 20:18:14,341 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
+2026-04-29 20:18:16,543 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-29 20:18:16,695 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-29 20:18:18,825 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/e332d34b-376c-4071-9631-656973e262a0 "HTTP/1.1 200 OK"
+2026-04-29 20:18:18,828 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-29 20:18:21,032 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-29 20:18:23,304 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=e332d34b-376c-4071-9631-656973e262a0 "HTTP/1.1 200 OK"
+2026-04-29 20:18:36,010 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\7b5a7a453887652d3284bb9eabe628e95982e15d5e0f16ff718d22beb5ed2a72\image.webp "HTTP/1.1 200 OK"
+2026-04-29 20:18:36,020 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
+2026-04-29 20:18:36,021 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] saving_masks progress=92
+2026-04-29 20:18:36,063 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] segments_meta saved (14 segments)
+2026-04-29 20:18:36,063 INFO backend.segmentation: [JOB 6897b1b65f7c4201ab0a5c35bf18b368] done mask_count=18
+2026-04-29 20:18:36,063 INFO backend.segmentation: [UPLOAD_BG] DONE 24.195s at 2026-04-30T02:18:36.063054+00:00
+2026-04-29 20:18:36,063 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-29 20:18:44,885 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:44.885155+00:00
+2026-04-29 20:18:45,431 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:18:45,591 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.706s at 2026-04-30T02:18:45.591016+00:00
+2026-04-29 20:18:49,898 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:49.898853+00:00
+2026-04-29 20:18:50,427 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:18:50,573 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.674s at 2026-04-30T02:18:50.573101+00:00
+2026-04-29 20:18:52,643 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:52.643494+00:00
+2026-04-29 20:18:53,101 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:18:53,259 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.615s at 2026-04-30T02:18:53.259095+00:00
+2026-04-29 20:18:55,884 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:55.884791+00:00
+2026-04-29 20:18:56,336 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:18:56,483 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.599s at 2026-04-30T02:18:56.483159+00:00
+2026-04-29 20:18:58,689 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:18:58.689702+00:00
+2026-04-29 20:18:59,139 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:18:59,285 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.596s at 2026-04-30T02:18:59.285688+00:00
+2026-04-29 20:19:01,587 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:01.587113+00:00
+2026-04-29 20:19:02,057 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:19:02,202 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.616s at 2026-04-30T02:19:02.202912+00:00
+2026-04-29 20:19:08,881 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:08.881813+00:00
+2026-04-29 20:19:09,450 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:19:09,598 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.716s at 2026-04-30T02:19:09.598660+00:00
+2026-04-29 20:19:14,081 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:14.081047+00:00
+2026-04-29 20:19:14,613 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:19:14,765 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.684s at 2026-04-30T02:19:14.765513+00:00
+2026-04-29 20:19:20,588 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:20.588691+00:00
+2026-04-29 20:19:21,001 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:19:21,148 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.560s at 2026-04-30T02:19:21.148963+00:00
+2026-04-29 20:19:26,717 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:19:26.717015+00:00
+2026-04-29 20:19:26,717 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] preparing_image progress=12
+2026-04-29 20:19:26,784 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-29 20:19:29,222 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
+2026-04-29 20:19:31,597 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-29 20:19:31,734 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-29 20:19:34,073 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/19c5143b-64ec-4b5d-942b-098f7096a07d "HTTP/1.1 200 OK"
+2026-04-29 20:19:34,076 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-29 20:19:36,338 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-29 20:19:38,618 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=19c5143b-64ec-4b5d-942b-098f7096a07d "HTTP/1.1 200 OK"
+2026-04-29 20:19:50,817 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\627367a96ce0d7cea77d51e3b57be3a803ddd9b06e2c8a9547129f322756dd05\image.webp "HTTP/1.1 200 OK"
+2026-04-29 20:19:50,828 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=13
+2026-04-29 20:19:50,828 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] saving_masks progress=92
+2026-04-29 20:19:50,860 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] segments_meta saved (13 segments)
+2026-04-29 20:19:50,861 INFO backend.segmentation: [JOB 0e77f0bbab294a828b0dbfbb826c3805] done mask_count=13
+2026-04-29 20:19:50,861 INFO backend.segmentation: [UPLOAD_BG] DONE 24.145s at 2026-04-30T02:19:50.861597+00:00
+2026-04-29 20:19:50,861 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-29 20:19:58,632 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:19:58.632422+00:00
+2026-04-29 20:19:58,950 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:19:59,096 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.464s at 2026-04-30T02:19:59.096073+00:00
+2026-04-29 20:20:03,025 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:20:03.025850+00:00
+2026-04-29 20:20:03,491 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:20:03,640 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.615s at 2026-04-30T02:20:03.640105+00:00
+2026-04-29 20:20:20,501 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:20:20.501928+00:00
+2026-04-29 20:20:21,076 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:20:21,227 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.727s at 2026-04-30T02:20:21.227737+00:00
+2026-04-29 20:20:28,266 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:20:28.266563+00:00
+2026-04-29 20:20:28,768 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:20:28,935 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.669s at 2026-04-30T02:20:28.935807+00:00
+2026-04-29 20:20:35,728 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:20:35.728058+00:00
+2026-04-29 20:20:35,729 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] preparing_image progress=12
+2026-04-29 20:20:35,790 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-29 20:20:38,252 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
+2026-04-29 20:20:40,610 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-29 20:20:40,810 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-29 20:20:43,106 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/31bdf8c4-3e85-4561-b055-cb540bff6222 "HTTP/1.1 200 OK"
+2026-04-29 20:20:43,110 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-29 20:20:45,435 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-29 20:20:47,968 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=31bdf8c4-3e85-4561-b055-cb540bff6222 "HTTP/1.1 200 OK"
+2026-04-29 20:21:09,199 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\de39b2da096587a3b0e0d7fb57541b12755192b377f4914a8047c40356bfbf4a\image.webp "HTTP/1.1 200 OK"
+2026-04-29 20:21:09,216 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=30
+2026-04-29 20:21:09,217 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] saving_masks progress=92
+2026-04-29 20:21:09,330 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] segments_meta saved (18 segments)
+2026-04-29 20:21:09,330 INFO backend.segmentation: [JOB f44cfa950b0546ffbcd7fa090bad49db] done mask_count=30
+2026-04-29 20:21:09,331 INFO backend.segmentation: [UPLOAD_BG] DONE 33.603s at 2026-04-30T02:21:09.331315+00:00
+2026-04-29 20:21:09,331 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-29 20:21:19,563 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:21:19.563482+00:00
+2026-04-29 20:21:19,875 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:21:20,037 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.474s at 2026-04-30T02:21:20.037544+00:00
+2026-04-29 20:21:27,716 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:21:27.716717+00:00
+2026-04-29 20:21:28,240 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:21:28,388 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.671s at 2026-04-30T02:21:28.388007+00:00
+2026-04-29 20:21:33,770 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:21:33.770053+00:00
+2026-04-29 20:21:34,297 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:21:34,445 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.676s at 2026-04-30T02:21:34.445668+00:00
+2026-04-29 20:21:45,556 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:21:45.556315+00:00
+2026-04-29 20:21:46,063 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:21:46,214 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.658s at 2026-04-30T02:21:46.214366+00:00
+2026-04-29 20:21:54,885 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:21:54.885450+00:00
+2026-04-29 20:21:54,886 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] preparing_image progress=12
+2026-04-29 20:21:55,003 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] segmenting_with_sam2 progress=30 estimated_seconds=138.4576
+2026-04-29 20:21:57,389 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
+2026-04-29 20:21:59,757 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-29 20:21:59,891 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-29 20:22:02,312 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-29 20:22:02,322 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/3f8ed7a1-4b28-46c2-9e01-7e4358b38e76 "HTTP/1.1 200 OK"
+2026-04-29 20:22:04,682 INFO httpx: HTTP Request: POST http://localhost:7860/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-29 20:22:07,179 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/queue/data?session_hash=3f8ed7a1-4b28-46c2-9e01-7e4358b38e76 "HTTP/1.1 200 OK"
+2026-04-29 20:22:33,186 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/file=C:\Users\alane\AppData\Local\Temp\gradio\80421cbcd599451a04044e3ece45f375843574c97db6199cd4e3f022f90b9311\image.webp "HTTP/1.1 200 OK"
+2026-04-29 20:22:33,213 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=16
+2026-04-29 20:22:33,214 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] saving_masks progress=92
+2026-04-29 20:22:33,419 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] segments_meta saved (16 segments)
+2026-04-29 20:22:33,419 INFO backend.segmentation: [JOB ec618977b0b7478ca5d30d251fa15945] done mask_count=16
+2026-04-29 20:22:33,419 INFO backend.segmentation: [UPLOAD_BG] DONE 38.534s at 2026-04-30T02:22:33.419503+00:00
+2026-04-29 20:22:33,420 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-29 20:22:38,594 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:22:38.593824+00:00
+2026-04-29 20:22:38,977 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:22:39,402 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.808s at 2026-04-30T02:22:39.402689+00:00
+2026-04-29 20:22:44,189 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:22:44.189800+00:00
+2026-04-29 20:22:44,726 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:22:45,179 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.990s at 2026-04-30T02:22:45.179303+00:00
+2026-04-29 20:22:50,087 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:22:50.087424+00:00
+2026-04-29 20:22:50,751 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-29 20:22:51,466 INFO backend.segmentation: [APPLY_TEXTURE] DONE 1.379s at 2026-04-30T02:22:51.466435+00:00
+2026-04-29 20:26:39,065 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-29 20:26:39,964 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-29 20:33:56,025 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-29 20:34:02,828 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T02:34:02.828129+00:00
+2026-04-29 20:34:02,830 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] preparing_image progress=12
+2026-04-29 20:34:02,900 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] segmenting_with_sam2 progress=30 estimated_seconds=51.939840000000004
+2026-04-29 20:34:04,067 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-29 20:34:04,727 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-29 20:34:05,153 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-29 20:34:05,258 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/b306737b-bf28-4f02-8963-83b74032d449 "HTTP/1.1 200 OK"
+2026-04-29 20:34:05,354 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-29 20:34:05,788 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-29 20:34:06,344 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=b306737b-bf28-4f02-8963-83b74032d449 "HTTP/1.1 200 OK"
+2026-04-29 20:34:24,624 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/edcd82066c73a2359a9133192b4091c873fb9fca768c0f377a7a519aeb9f9b3a/image.webp "HTTP/1.1 200 OK"
+2026-04-29 20:34:24,678 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🌳 Terraza / Patio / Jardín motor=Híbrido Arquitectura (Cityscapes Grande + DINO Pequeño) mask_count=20
+2026-04-29 20:34:24,684 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] saving_masks progress=92
+2026-04-29 20:34:24,781 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] segments_meta saved (20 segments)
+2026-04-29 20:34:24,782 INFO backend.segmentation: [JOB ccecb5fbdf744d9eae57eb2b04e0af13] done mask_count=20
+2026-04-29 20:34:24,782 INFO backend.segmentation: [UPLOAD_BG] DONE 21.955s at 2026-04-30T02:34:24.782746+00:00
+2026-04-29 20:34:24,783 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-29 20:34:27,987 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T02:34:27.987941+00:00
+2026-04-29 20:34:28,292 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\proyecto-White-Houses.jpg
+2026-04-29 20:34:28,570 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.582s at 2026-04-30T02:34:28.570140+00:00
+2026-04-30 11:28:10,082 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 11:28:10,113 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-30 11:28:44,116 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T17:28:44.116002+00:00
+2026-04-30 11:28:44,117 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] preparing_image progress=12
+2026-04-30 11:28:44,411 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-30 11:28:44,411 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 11:28:47,099 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-30 11:28:47,585 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-30 11:28:48,272 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-30 11:28:48,363 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/7d7be152-f5b8-4924-8c4d-1a0b61711e8f "HTTP/1.1 200 OK"
+2026-04-30 11:28:48,476 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-30 11:28:48,934 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-30 11:28:49,386 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=7d7be152-f5b8-4924-8c4d-1a0b61711e8f "HTTP/1.1 200 OK"
+2026-04-30 11:29:08,489 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
+2026-04-30 11:29:08,588 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
+2026-04-30 11:29:08,590 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] saving_masks progress=92
+2026-04-30 11:29:08,688 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] segments_meta saved (14 segments)
+2026-04-30 11:29:08,688 INFO backend.segmentation: [JOB 9a15bbfe68f84bde8bdac60a8be4da9e] done mask_count=18
+2026-04-30 11:29:08,689 INFO backend.segmentation: [UPLOAD_BG] DONE 24.573s at 2026-04-30T17:29:08.689489+00:00
+2026-04-30 11:29:08,689 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-30 11:34:31,212 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 11:34:31,227 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-30 11:35:20,079 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 11:35:20,093 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-30 11:35:28,226 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T17:35:28.226030+00:00
+2026-04-30 11:35:28,227 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] preparing_image progress=12
+2026-04-30 11:35:28,315 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-30 11:35:28,316 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 11:35:29,381 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-30 11:35:29,927 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-30 11:35:30,567 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-30 11:35:30,680 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/846ae43c-81a8-48af-97ee-8292d522cc64 "HTTP/1.1 200 OK"
+2026-04-30 11:35:30,784 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-30 11:35:31,388 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-30 11:35:31,964 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=846ae43c-81a8-48af-97ee-8292d522cc64 "HTTP/1.1 200 OK"
+2026-04-30 11:35:43,682 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
+2026-04-30 11:35:43,788 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
+2026-04-30 11:35:43,788 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] saving_masks progress=92
+2026-04-30 11:35:43,874 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] segments_meta saved (14 segments)
+2026-04-30 11:35:43,875 INFO backend.segmentation: [JOB 48baf3b40f2f45d190f44cd2761c709e] done mask_count=18
+2026-04-30 11:35:43,875 INFO backend.segmentation: [UPLOAD_BG] DONE 15.650s at 2026-04-30T17:35:43.875230+00:00
+2026-04-30 11:35:43,876 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-30 11:37:18,311 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:18.311528+00:00
+2026-04-30 11:37:18,787 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:37:19,025 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.714s at 2026-04-30T17:37:19.025433+00:00
+2026-04-30 11:37:22,720 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:22.720207+00:00
+2026-04-30 11:37:23,223 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:37:23,371 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.651s at 2026-04-30T17:37:23.371172+00:00
+2026-04-30 11:37:27,040 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:27.040137+00:00
+2026-04-30 11:37:27,461 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:37:27,615 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.576s at 2026-04-30T17:37:27.615284+00:00
+2026-04-30 11:37:32,588 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T17:37:32.588150+00:00
+2026-04-30 11:37:32,589 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] preparing_image progress=12
+2026-04-30 11:37:32,652 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-30 11:37:32,653 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 11:37:33,265 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-30 11:37:33,854 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-30 11:37:34,045 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-30 11:37:34,638 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-30 11:37:35,300 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-30 11:37:35,353 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/f3fac27d-4abe-4757-a29c-4cc301d3c520 "HTTP/1.1 200 OK"
+2026-04-30 11:37:35,860 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=f3fac27d-4abe-4757-a29c-4cc301d3c520 "HTTP/1.1 200 OK"
+2026-04-30 11:37:45,344 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/525c342e2500d48137e90e793b9f3884aa3deedaa44ac6a6178e85433dde68ed/image.webp "HTTP/1.1 200 OK"
+2026-04-30 11:37:45,399 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=19
+2026-04-30 11:37:45,400 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] saving_masks progress=92
+2026-04-30 11:37:45,496 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] segments_meta saved (19 segments)
+2026-04-30 11:37:45,496 INFO backend.segmentation: [JOB 5a04157791ee46708b9659b06abc01cd] done mask_count=19
+2026-04-30 11:37:45,497 INFO backend.segmentation: [UPLOAD_BG] DONE 12.909s at 2026-04-30T17:37:45.497768+00:00
+2026-04-30 11:37:45,497 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-30 11:37:51,411 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:51.411336+00:00
+2026-04-30 11:37:51,902 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:37:52,048 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.637s at 2026-04-30T17:37:52.048476+00:00
+2026-04-30 11:37:54,874 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:54.874358+00:00
+2026-04-30 11:37:55,381 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:37:55,525 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.652s at 2026-04-30T17:37:55.525845+00:00
+2026-04-30 11:37:59,388 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:37:59.388707+00:00
+2026-04-30 11:37:59,889 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.05 < 0.35, skip perspective)
+2026-04-30 11:37:59,903 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:00,058 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.670s at 2026-04-30T17:38:00.058226+00:00
+2026-04-30 11:38:04,419 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:04.419644+00:00
+2026-04-30 11:38:04,939 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:05,083 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.664s at 2026-04-30T17:38:05.083669+00:00
+2026-04-30 11:38:09,485 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:09.485185+00:00
+2026-04-30 11:38:10,004 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:10,164 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.679s at 2026-04-30T17:38:10.164696+00:00
+2026-04-30 11:38:14,863 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:14.863574+00:00
+2026-04-30 11:38:15,447 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:15,612 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.750s at 2026-04-30T17:38:15.612415+00:00
+2026-04-30 11:38:18,118 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:18.118131+00:00
+2026-04-30 11:38:18,776 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:18,995 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.879s at 2026-04-30T17:38:18.995927+00:00
+2026-04-30 11:38:22,037 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:22.037510+00:00
+2026-04-30 11:38:22,686 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:22,873 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.835s at 2026-04-30T17:38:22.873532+00:00
+2026-04-30 11:38:25,520 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:25.520184+00:00
+2026-04-30 11:38:26,145 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:26,334 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.815s at 2026-04-30T17:38:26.334641+00:00
+2026-04-30 11:38:28,140 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:28.140486+00:00
+2026-04-30 11:38:28,847 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:29,023 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.882s at 2026-04-30T17:38:29.023363+00:00
+2026-04-30 11:38:35,098 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:38:35.098342+00:00
+2026-04-30 11:38:35,824 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:38:36,028 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.930s at 2026-04-30T17:38:36.028300+00:00
+2026-04-30 11:41:41,140 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T17:41:41.140015+00:00
+2026-04-30 11:41:41,149 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] preparing_image progress=12
+2026-04-30 11:41:41,245 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-30 11:41:41,246 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 11:41:41,911 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-30 11:41:42,462 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-30 11:41:42,643 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-30 11:41:43,175 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/3aef8110-e818-4b0d-b6eb-ea6e1e3f6d26 "HTTP/1.1 200 OK"
+2026-04-30 11:41:43,286 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-30 11:41:43,879 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-30 11:41:44,473 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=3aef8110-e818-4b0d-b6eb-ea6e1e3f6d26 "HTTP/1.1 200 OK"
+2026-04-30 11:41:54,142 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/be028661dd9bac57589c50374ec81fba3f6d33d75c68656f138199c7ecd043d5/image.webp "HTTP/1.1 200 OK"
+2026-04-30 11:41:54,248 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=13
+2026-04-30 11:41:54,250 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] saving_masks progress=92
+2026-04-30 11:41:54,306 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] segments_meta saved (13 segments)
+2026-04-30 11:41:54,307 INFO backend.segmentation: [JOB a63a4a48e2114d2a8a8ce7342d8b8443] done mask_count=13
+2026-04-30 11:41:54,307 INFO backend.segmentation: [UPLOAD_BG] DONE 13.167s at 2026-04-30T17:41:54.307037+00:00
+2026-04-30 11:41:54,308 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-30 11:43:18,472 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:43:18.472363+00:00
+2026-04-30 11:43:19,016 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:43:19,160 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.688s at 2026-04-30T17:43:19.160192+00:00
+2026-04-30 11:43:30,372 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:43:30.372475+00:00
+2026-04-30 11:43:30,954 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:43:31,098 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.727s at 2026-04-30T17:43:31.098668+00:00
+2026-04-30 11:47:34,143 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:47:34.143047+00:00
+2026-04-30 11:47:34,404 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:47:34,532 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.389s at 2026-04-30T17:47:34.532555+00:00
+2026-04-30 11:47:55,089 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T17:47:55.089325+00:00
+2026-04-30 11:47:55,583 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 11:47:55,730 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.641s at 2026-04-30T17:47:55.730378+00:00
+2026-04-30 12:04:38,148 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 12:04:38,173 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-30 12:09:38,204 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 12:09:38,219 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-30 12:13:52,707 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T18:13:52.707043+00:00
+2026-04-30 12:13:52,707 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] preparing_image progress=12
+2026-04-30 12:13:52,799 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-30 12:13:52,799 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 12:13:53,878 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-30 12:13:54,504 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-30 12:13:55,176 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-30 12:13:55,270 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/41cb0056-465a-425e-83c0-301658311ea8 "HTTP/1.1 200 OK"
+2026-04-30 12:13:55,368 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-30 12:13:55,904 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-30 12:13:56,487 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=41cb0056-465a-425e-83c0-301658311ea8 "HTTP/1.1 200 OK"
+2026-04-30 12:14:07,019 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
+2026-04-30 12:14:07,128 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
+2026-04-30 12:14:07,129 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] saving_masks progress=92
+2026-04-30 12:14:07,214 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] segments_meta saved (14 segments)
+2026-04-30 12:14:07,214 INFO backend.segmentation: [JOB 1df6118ebf3b4825b6acf36a62eb382b] done mask_count=18
+2026-04-30 12:14:07,215 INFO backend.segmentation: [UPLOAD_BG] DONE 14.509s at 2026-04-30T18:14:07.215535+00:00
+2026-04-30 12:14:07,216 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-30 12:15:26,031 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:26.031154+00:00
+2026-04-30 12:15:26,320 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 12:15:26,583 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.552s at 2026-04-30T18:15:26.583372+00:00
+2026-04-30 12:15:31,474 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:31.474416+00:00
+2026-04-30 12:15:31,999 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 12:15:32,141 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.667s at 2026-04-30T18:15:32.141076+00:00
+2026-04-30 12:15:37,533 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:37.533421+00:00
+2026-04-30 12:15:38,003 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 12:15:38,148 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.615s at 2026-04-30T18:15:38.148131+00:00
+2026-04-30 12:15:43,112 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:43.112106+00:00
+2026-04-30 12:15:43,495 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 12:15:43,639 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.528s at 2026-04-30T18:15:43.639421+00:00
+2026-04-30 12:15:48,170 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:15:48.170441+00:00
+2026-04-30 12:15:48,545 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 12:15:48,688 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.518s at 2026-04-30T18:15:48.688355+00:00
+2026-04-30 12:21:38,766 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T18:21:38.766212+00:00
+2026-04-30 12:21:38,766 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] preparing_image progress=12
+2026-04-30 12:21:38,838 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-30 12:21:38,838 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 12:21:39,938 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-30 12:21:41,143 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-30 12:21:41,334 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-30 12:21:41,668 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/a637527a-5267-4a6e-acc0-e57a7de5119a "HTTP/1.1 200 OK"
+2026-04-30 12:21:41,761 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-30 12:21:42,216 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-30 12:21:42,820 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=a637527a-5267-4a6e-acc0-e57a7de5119a "HTTP/1.1 200 OK"
+2026-04-30 12:21:50,974 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
+2026-04-30 12:21:51,074 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
+2026-04-30 12:21:51,074 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] saving_masks progress=92
+2026-04-30 12:21:51,145 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] segments_meta saved (14 segments)
+2026-04-30 12:21:51,146 INFO backend.segmentation: [JOB b99cc22c206c4e0380d3b2fe2e24ffc6] done mask_count=18
+2026-04-30 12:21:51,147 INFO backend.segmentation: [UPLOAD_BG] DONE 12.381s at 2026-04-30T18:21:51.147398+00:00
+2026-04-30 12:21:51,147 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-30 12:22:28,223 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:22:28.223162+00:00
+2026-04-30 12:22:28,488 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 12:22:28,633 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.410s at 2026-04-30T18:22:28.633219+00:00
+2026-04-30 12:23:38,541 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:23:38.541894+00:00
+2026-04-30 12:23:39,059 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.28 < 0.35, skip perspective)
+2026-04-30 12:23:39,078 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 12:23:39,224 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.682s at 2026-04-30T18:23:39.224901+00:00
+2026-04-30 12:23:47,739 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T18:23:47.739936+00:00
+2026-04-30 12:23:48,234 INFO backend.segmentation: [APPLY_TEXTURE] flat floor tiling (trap=0.29 < 0.35, skip perspective)
+2026-04-30 12:23:48,249 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 12:23:48,393 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.654s at 2026-04-30T18:23:48.393543+00:00
+2026-04-30 12:35:04,237 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T18:35:04.237929+00:00
+2026-04-30 12:35:04,237 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] preparing_image progress=12
+2026-04-30 12:35:04,252 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] segmenting_with_sam2 progress=30 estimated_seconds=28.89164
+2026-04-30 12:35:04,252 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 12:35:04,919 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-30 12:35:05,542 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-30 12:35:05,767 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-30 12:35:06,228 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/e02fbff5-268c-40cf-bacf-e1c35bcf4346 "HTTP/1.1 200 OK"
+2026-04-30 12:35:06,341 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-30 12:35:06,892 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-30 12:35:07,458 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=e02fbff5-268c-40cf-bacf-e1c35bcf4346 "HTTP/1.1 200 OK"
+2026-04-30 12:35:29,382 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/75fa9ee4d8e3aa2f3926aa662e35acdfbaa3f94163e61a68527474a5a60675c3/image.webp "HTTP/1.1 200 OK"
+2026-04-30 12:35:29,438 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🏙️ Fachada / Exterior motor=Híbrido Arquitectura (Cityscapes Grande + DINO Pequeño) mask_count=12
+2026-04-30 12:35:29,439 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] saving_masks progress=92
+2026-04-30 12:35:29,463 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] segments_meta saved (11 segments)
+2026-04-30 12:35:29,463 INFO backend.segmentation: [JOB 0e62f0415d394dc8b28fae3fdce6ac1d] done mask_count=12
+2026-04-30 12:35:29,463 INFO backend.segmentation: [UPLOAD_BG] DONE 25.226s at 2026-04-30T18:35:29.463948+00:00
+2026-04-30 12:35:29,464 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-30 15:39:34,392 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 15:39:34,422 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-04-30 15:40:07,782 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69f3cc370fe929ed6cff073d"}, "remainingTimeMS": 30}
+2026-04-30 15:40:18,856 INFO backend.segmentation: [UPLOAD_BG] START at 2026-04-30T21:40:18.856487+00:00
+2026-04-30 15:40:18,856 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] preparing_image progress=12
+2026-04-30 15:40:19,134 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
+2026-04-30 15:40:19,134 INFO services.gradio_client_service: Calling GPU Gradio Space: https://eduardo4547-hyper-reality-sam2-gpu.hf.space
+2026-04-30 15:40:21,980 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/config "HTTP/1.1 200 OK"
+2026-04-30 15:40:22,624 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-04-30 15:40:23,391 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-04-30 15:40:23,497 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/heartbeat/314c6a15-7cd5-4d38-88c5-58a08df1fad6 "HTTP/1.1 200 OK"
+2026-04-30 15:40:23,607 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/upload "HTTP/1.1 200 OK"
+2026-04-30 15:40:24,238 INFO httpx: HTTP Request: POST https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/join "HTTP/1.1 200 OK"
+2026-04-30 15:40:24,860 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/queue/data?session_hash=314c6a15-7cd5-4d38-88c5-58a08df1fad6 "HTTP/1.1 200 OK"
+2026-04-30 15:40:33,216 INFO httpx: HTTP Request: GET https://eduardo4547-hyper-reality-sam2-gpu.hf.space/gradio_api/file=/tmp/gradio/d71a861910d02311782c5f826bb80cc1fd74d6f6086844534a04a02edf930180/image.webp "HTTP/1.1 200 OK"
+2026-04-30 15:40:33,324 INFO services.gradio_client_service: Gradio Space segmentation: entorno=🛁 Baño / Cocina motor=SegFormer (SegFormer ADE20K+ DINO) + SAM 2.1 mask_count=18
+2026-04-30 15:40:33,325 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] saving_masks progress=92
+2026-04-30 15:40:33,428 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] segments_meta saved (14 segments)
+2026-04-30 15:40:33,428 INFO backend.segmentation: [JOB 65636043fc364d5bba59fca718f4eb87] done mask_count=18
+2026-04-30 15:40:33,429 INFO backend.segmentation: [UPLOAD_BG] DONE 14.573s at 2026-04-30T21:40:33.429138+00:00
+2026-04-30 15:40:33,429 INFO backend.segmentation: Releasing resources (full_unload=False)
+2026-04-30 15:40:38,479 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T21:40:38.479968+00:00
+2026-04-30 15:40:38,976 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 15:40:39,252 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.773s at 2026-04-30T21:40:39.252883+00:00
+2026-04-30 16:21:48,502 INFO backend.segmentation: [APPLY_TEXTURE] START at 2026-04-30T22:21:48.502651+00:00
+2026-04-30 16:21:49,012 INFO backend.segmentation: [APPLY_TEXTURE] cleared mask from original source: C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\uploads\demo-room.jpg
+2026-04-30 16:21:49,158 INFO backend.segmentation: [APPLY_TEXTURE] DONE 0.656s at 2026-04-30T22:21:49.158351+00:00
+2026-05-06 18:02:51,635 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
+2026-05-06 18:02:51,663 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
+2026-05-06 18:03:05,661 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "69fbd6b9d024dc8e891e4555"}, "remainingTimeMS": 30}
+2026-05-06 18:03:54,118 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-07T00:03:54.118398+00:00
+2026-05-06 18:03:54,119 INFO backend.segmentation: [JOB e0df636678f746dc9b2d4a29256ab769] preparing_image progress=12
+2026-05-06 18:03:54,441 INFO backend.segmentation: [JOB e0df636678f746dc9b2d4a29256ab769] segmenting_with_sam2 progress=30 estimated_seconds=63.05024
+2026-05-06 18:03:54,441 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
+2026-05-06 18:03:59,802 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
+2026-05-06 18:04:02,031 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-05-06 18:04:02,051 WARNING services.gradio_client_service: GPU Space failed (Cannot find a function with `api_name`: /segment.), trying CPU fallback...
+2026-05-06 18:04:02,051 INFO services.gradio_client_service: Calling CPU fallback Space: http://localhost:7860
+2026-05-06 18:04:02,487 INFO httpx: HTTP Request: HEAD https://huggingface.co/api/telemetry/py_client/initiated "HTTP/1.1 200 OK"
+2026-05-06 18:04:04,382 INFO httpx: HTTP Request: GET http://localhost:7860/config "HTTP/1.1 200 OK"
+2026-05-06 18:04:04,396 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/heartbeat/07a1a8b9-03be-4f34-9425-2b264489eb61 "HTTP/1.1 200 OK"
+2026-05-06 18:04:06,807 INFO httpx: HTTP Request: GET http://localhost:7860/gradio_api/info?serialize=False "HTTP/1.1 200 OK"
+2026-05-06 18:04:06,810 ERROR backend.segmentation: [JOB e0df636678f746dc9b2d4a29256ab769] failed: cannot access local variable 'exc_gpu' where it is not associated with a value
+Traceback (most recent call last):
+ File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 89, in segment_via_gradio_sync
+ return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 36, in _call_gradio_sync
+ _overlay_file, combined_json_str = client.predict(
+ ^^^^^^^^^^^^^^^
+ File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 497, in predict
+ return self.submit(
+ ^^^^^^^^^^^^
+ File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 543, in submit
+ inferred_fn_index = self._infer_fn_index(api_name, fn_index)
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\.venv\Lib\site-packages\gradio_client\client.py", line 881, in _infer_fn_index
+ raise ValueError(error_message)
+ValueError: Cannot find a function with `api_name`: /segment.
-2026-05-11 16:27:59,813 ERROR backend.segmentation: [SAM2] ERROR: SAM 2 model file not found. Tried the following paths:
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2_hiera_large.pt
-Set SAM2_MODEL_PATH to the checkpoint location.
-2026-05-11 16:27:59,813 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,814 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,814 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,814 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,814 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,814 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,814 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large_fresh.pt | exists=False
-2026-05-11 16:27:59,814 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,814 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,815 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,815 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,815 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,815 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,815 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,815 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,815 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,815 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pt | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,816 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,817 ERROR backend.segmentation: [SAM2] ERROR: SAM 2 model file not found. Tried the following paths:
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2_hiera_large.pt
-Set SAM2_MODEL_PATH to the checkpoint location.
-2026-05-11 16:27:59,817 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,817 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,817 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pth | exists=False
-2026-05-11 16:27:59,817 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,818 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,818 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,818 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,818 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,818 INFO backend.segmentation: [SAM2] - C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2_hiera_large.pt | exists=False
-2026-05-11 16:27:59,818 ERROR backend.segmentation: [SAM2] ERROR: SAM 2 model file not found. Tried the following paths:
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large_fresh.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2.1_hiera_large.pth
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\models\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\models\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\modelo\sam2_hiera_large.pt
-- C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\modelo\sam2_hiera_large.pt
-Set SAM2_MODEL_PATH to the checkpoint location.
-2026-05-11 16:27:59,917 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 16:27:59,917 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:27:59,932 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 16:27:59,933 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 16:27:59,933 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:27:59,933 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:28:07,147 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:28:07,147 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:28:07,148 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:28:07,164 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:28:07,164 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:28:07,165 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:31:47,348 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:31:47,360 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:31:48,139 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:31:48,153 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:32:34,878 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:32:34,898 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:32:35,134 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:32:35,142 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:32:35,155 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:32:35,160 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:33:03,614 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:33:03,631 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:33:03,838 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:33:03,857 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:33:03,874 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:33:03,890 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:33:27,698 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:33:27,711 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:33:28,467 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:33:28,479 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:33:35,174 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:33:35,185 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:35:52,942 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:35:52,944 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:35:52,951 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:35:52,968 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:35:52,970 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:35:52,974 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:36:02,795 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:36:02,806 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:36:02,822 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:36:02,837 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:36:02,851 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:36:02,902 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:36:18,763 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:36:18,791 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:38:44,845 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:38:44,846 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:38:44,864 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:38:44,865 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:38:44,946 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:38:44,964 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:44:31,497 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:44:31,522 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:45:00,726 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T22:45:00.726193+00:00
-2026-05-11 16:45:00,726 INFO backend.segmentation: [JOB 9df754b89e794ddf81b412c1c417a64b] preparing_image progress=12
-2026-05-11 16:45:00,795 INFO backend.segmentation: [JOB 9df754b89e794ddf81b412c1c417a64b] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 16:45:00,795 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 16:45:01,032 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 16:45:01,032 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 16:45:01,033 ERROR backend.segmentation: [JOB 9df754b89e794ddf81b412c1c417a64b] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
- client = Client(space_url, httpx_kwargs={"timeout": 300.0})
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
- ...<3 lines>...
- ) from exc_cpu
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 16:45:01,034 INFO backend.segmentation: [UPLOAD_BG] DONE 0.308s at 2026-05-11T22:45:01.034236+00:00
-2026-05-11 16:45:01,034 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:47:49,523 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T22:47:49.523811+00:00
-2026-05-11 16:47:49,524 INFO backend.segmentation: [JOB 0742c2f8d0c2446d8c7d8de8d4412464] preparing_image progress=12
-2026-05-11 16:47:49,543 INFO backend.segmentation: [JOB 0742c2f8d0c2446d8c7d8de8d4412464] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 16:47:49,543 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 16:47:49,543 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 16:47:49,543 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 16:47:49,544 ERROR backend.segmentation: [JOB 0742c2f8d0c2446d8c7d8de8d4412464] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
- client = Client(space_url, httpx_kwargs={"timeout": 300.0})
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
- ...<3 lines>...
- ) from exc_cpu
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 16:47:49,545 INFO backend.segmentation: [UPLOAD_BG] DONE 0.022s at 2026-05-11T22:47:49.545319+00:00
-2026-05-11 16:47:49,545 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:47:55,620 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T22:47:55.620933+00:00
-2026-05-11 16:47:55,621 INFO backend.segmentation: [JOB 6441970dde1b47ca8bb3e489f5839c19] preparing_image progress=12
-2026-05-11 16:47:55,640 INFO backend.segmentation: [JOB 6441970dde1b47ca8bb3e489f5839c19] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 16:47:55,640 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 16:47:55,641 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 16:47:55,641 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 16:47:55,641 ERROR backend.segmentation: [JOB 6441970dde1b47ca8bb3e489f5839c19] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
- client = Client(space_url, httpx_kwargs={"timeout": 300.0})
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
- ...<3 lines>...
- ) from exc_cpu
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 16:47:55,643 INFO backend.segmentation: [UPLOAD_BG] DONE 0.022s at 2026-05-11T22:47:55.643392+00:00
-2026-05-11 16:47:55,643 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:48:04,986 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:48:05,017 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:48:20,560 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T22:48:20.560278+00:00
-2026-05-11 16:48:20,560 INFO backend.segmentation: [JOB 926e56e3fb754b469dea9cbaf622e6d8] preparing_image progress=12
-2026-05-11 16:48:20,581 INFO backend.segmentation: [JOB 926e56e3fb754b469dea9cbaf622e6d8] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 16:48:20,581 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 16:48:20,581 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 16:48:20,581 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 16:48:20,582 ERROR backend.segmentation: [JOB 926e56e3fb754b469dea9cbaf622e6d8] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
- client = Client(space_url, httpx_kwargs={"timeout": 300.0})
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- label_map, mask_count = segment_via_gradio_sync(image_path)
- ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
- ...<3 lines>...
- ) from exc_cpu
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 16:48:20,583 INFO backend.segmentation: [UPLOAD_BG] DONE 0.023s at 2026-05-11T22:48:20.583708+00:00
-2026-05-11 16:48:20,583 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 16:58:04,997 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:58:05,016 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 16:58:05,950 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 16:58:05,971 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 17:00:40,362 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:00:40.362157+00:00
-2026-05-11 17:00:40,362 INFO backend.segmentation: [JOB e08dc302227b460db3db112597ff63e2] preparing_image progress=12
-2026-05-11 17:00:40,388 INFO backend.segmentation: [JOB e08dc302227b460db3db112597ff63e2] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:00:40,389 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 17:00:40,389 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 17:00:40,389 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 17:00:40,389 ERROR backend.segmentation: [JOB e08dc302227b460db3db112597ff63e2] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
- client = Client(space_url, httpx_kwargs={"timeout": 300.0})
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- # We are simplifying the flow: skipping SAM 2 segmentation.
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
- ...<3 lines>...
- ) from exc_cpu
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 17:00:40,393 INFO backend.segmentation: [UPLOAD_BG] DONE 0.031s at 2026-05-11T23:00:40.393043+00:00
-2026-05-11 17:00:40,393 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:01:51,772 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:01:51,792 INFO backend.segmentation: [LIFESPAN] GRADIO_SPACE_URL set — skipping local SAM2 load.
-2026-05-11 17:01:52,577 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:01:52.577203+00:00
-2026-05-11 17:01:52,577 INFO backend.segmentation: [JOB b248488a436441c1af4769102b3e76a0] preparing_image progress=12
-2026-05-11 17:01:52,605 INFO backend.segmentation: [JOB b248488a436441c1af4769102b3e76a0] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:01:52,605 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 17:01:52,606 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 17:01:52,606 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 17:01:52,606 ERROR backend.segmentation: [JOB b248488a436441c1af4769102b3e76a0] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- return _call_gradio_sync(image_path, GRADIO_CPU_FALLBACK_URL)
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
- client = Client(space_url, httpx_kwargs={"timeout": 300.0})
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- # We are simplifying the flow: skipping SAM 2 segmentation.
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- raise RuntimeError(
- ...<3 lines>...
- ) from exc_cpu
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 17:01:52,608 INFO backend.segmentation: [UPLOAD_BG] DONE 0.032s at 2026-05-11T23:01:52.608875+00:00
-2026-05-11 17:01:52,609 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:05:12,352 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:05:12,378 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:05:12,379 WARNING backend.segmentation: Lifespan startup cancelled. Releasing resources.
-2026-05-11 17:05:12,380 INFO backend.segmentation: Releasing resources (full_unload=True)
-2026-05-11 17:05:12,418 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:05:12,419 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:05:15,614 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:05:15,643 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:05:22,954 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:05:22.954684+00:00
-2026-05-11 17:05:22,955 INFO backend.segmentation: [JOB 8c340c544ab84952bec7959289cecf9c] preparing_image progress=12
-2026-05-11 17:05:22,976 INFO backend.segmentation: [JOB 8c340c544ab84952bec7959289cecf9c] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:05:22,976 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 17:05:22,976 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 17:05:22,977 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 17:05:22,977 ERROR backend.segmentation: [JOB 8c340c544ab84952bec7959289cecf9c] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- raise RuntimeError(f"GPU Gradio Space failed and no CPU fallback configured. Error: {gpu_error}")
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- # We are simplifying the flow: skipping SAM 2 segmentation.
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- try:
-
- ...<3 lines>...
- raise RuntimeError(
- ^^^^^^^^^^^^^^
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 17:05:22,979 INFO backend.segmentation: [UPLOAD_BG] DONE 0.025s at 2026-05-11T23:05:22.979381+00:00
-2026-05-11 17:05:22,979 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:07:10,779 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:07:10.779085+00:00
-2026-05-11 17:07:10,779 INFO backend.segmentation: [JOB 293b338a28b84ed4b5950719a8beecff] preparing_image progress=12
-2026-05-11 17:07:10,800 INFO backend.segmentation: [JOB 293b338a28b84ed4b5950719a8beecff] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:07:10,800 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 17:07:10,800 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 17:07:10,800 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 17:07:10,800 ERROR backend.segmentation: [JOB 293b338a28b84ed4b5950719a8beecff] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- raise RuntimeError(f"GPU Gradio Space failed and no CPU fallback configured. Error: {gpu_error}")
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- # We are simplifying the flow: skipping SAM 2 segmentation.
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- try:
-
- ...<3 lines>...
- raise RuntimeError(
- ^^^^^^^^^^^^^^
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 17:07:10,802 INFO backend.segmentation: [UPLOAD_BG] DONE 0.023s at 2026-05-11T23:07:10.802362+00:00
-2026-05-11 17:07:10,802 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:07:52,210 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:07:52.210727+00:00
-2026-05-11 17:07:52,211 INFO backend.segmentation: [JOB a5fedf0501a94001b42fc9a71c7b75ca] preparing_image progress=12
-2026-05-11 17:07:52,230 INFO backend.segmentation: [JOB a5fedf0501a94001b42fc9a71c7b75ca] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:07:52,231 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 17:07:52,231 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 17:07:52,231 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 17:07:52,231 ERROR backend.segmentation: [JOB a5fedf0501a94001b42fc9a71c7b75ca] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- raise RuntimeError(f"GPU Gradio Space failed and no CPU fallback configured. Error: {gpu_error}")
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- # We are simplifying the flow: skipping SAM 2 segmentation.
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- try:
-
- ...<3 lines>...
- raise RuntimeError(
- ^^^^^^^^^^^^^^
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 17:07:52,233 INFO backend.segmentation: [UPLOAD_BG] DONE 0.023s at 2026-05-11T23:07:52.233475+00:00
-2026-05-11 17:07:52,233 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:09:10,111 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:09:10.111062+00:00
-2026-05-11 17:09:10,111 INFO backend.segmentation: [JOB 0a7f381bf0964d229708409bc0c5bd3b] preparing_image progress=12
-2026-05-11 17:09:10,128 INFO backend.segmentation: [JOB 0a7f381bf0964d229708409bc0c5bd3b] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:09:10,129 INFO services.gradio_client_service: Calling GPU Gradio Space: http://localhost:7860
-2026-05-11 17:09:10,129 WARNING services.gradio_client_service: GPU Space failed (Client.__init__() got an unexpected keyword argument 'httpx_kwargs'), trying CPU fallback...
-2026-05-11 17:09:10,129 INFO services.gradio_client_service: Calling CPU fallback Space: https://eduardo4547-hyper-reality-sam2-cpu.hf.space
-2026-05-11 17:09:10,129 ERROR backend.segmentation: [JOB 0a7f381bf0964d229708409bc0c5bd3b] failed: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 91, in segment_via_gradio_sync
- raise RuntimeError(f"GPU Gradio Space failed and no CPU fallback configured. Error: {gpu_error}")
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 33, in _call_gradio_sync
-TypeError: Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-
-The above exception was the direct cause of the following exception:
-
-Traceback (most recent call last):
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\image_service.py", line 138, in run_upload_job
- # We are simplifying the flow: skipping SAM 2 segmentation.
- File "C:\Users\alane\OneDrive\Escritorio\Trabajo\Prueba-PoC\backend\services\gradio_client_service.py", line 93, in segment_via_gradio_sync
- try:
-
- ...<3 lines>...
- raise RuntimeError(
- ^^^^^^^^^^^^^^
-RuntimeError: Both Gradio Spaces failed.
- GPU (http://localhost:7860): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
- CPU (https://eduardo4547-hyper-reality-sam2-cpu.hf.space): Client.__init__() got an unexpected keyword argument 'httpx_kwargs'
-2026-05-11 17:09:10,130 INFO backend.segmentation: [UPLOAD_BG] DONE 0.019s at 2026-05-11T23:09:10.130195+00:00
-2026-05-11 17:09:10,130 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:10:41,947 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:10:41,965 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:10:44,865 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0261f4b9a9473ac9483d03"}, "remainingTimeMS": 30}
-2026-05-11 17:10:53,790 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:10:53.790345+00:00
-2026-05-11 17:10:53,790 INFO backend.segmentation: [JOB e7931cb747a044c0b5798ba3fd043246] preparing_image progress=12
-2026-05-11 17:10:53,918 INFO backend.segmentation: [JOB e7931cb747a044c0b5798ba3fd043246] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:10:53,919 INFO backend.segmentation: [JOB e7931cb747a044c0b5798ba3fd043246] done (simplified, 0 masks)
-2026-05-11 17:10:53,919 INFO backend.segmentation: [UPLOAD_BG] DONE 0.129s at 2026-05-11T23:10:53.919102+00:00
-2026-05-11 17:10:53,919 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:10:56,143 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026200b9a9473ac9483d04"}, "remainingTimeMS": 30}
-2026-05-11 17:10:58,808 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:10:58.808470+00:00
-2026-05-11 17:10:58,809 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.001s at 2026-05-11T23:10:58.809468+00:00
-2026-05-11 17:10:58,809 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:10:59,967 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:10:59.967490+00:00
-2026-05-11 17:10:59,967 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.001s at 2026-05-11T23:10:59.967490+00:00
-2026-05-11 17:10:59,968 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:11:13,886 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:11:13.886474+00:00
-2026-05-11 17:11:13,887 INFO backend.segmentation: [JOB 650975a38c7749568b7341423ad4d7d9] preparing_image progress=12
-2026-05-11 17:11:13,906 INFO backend.segmentation: [JOB 650975a38c7749568b7341423ad4d7d9] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:11:13,907 INFO backend.segmentation: [JOB 650975a38c7749568b7341423ad4d7d9] done (simplified, 0 masks)
-2026-05-11 17:11:13,907 INFO backend.segmentation: [UPLOAD_BG] DONE 0.021s at 2026-05-11T23:11:13.907778+00:00
-2026-05-11 17:11:13,907 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:11:28,374 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:11:28.374195+00:00
-2026-05-11 17:11:28,374 INFO backend.segmentation: [JOB 3f1f91ed35624099bffaf23f5c5badc3] preparing_image progress=12
-2026-05-11 17:11:28,400 INFO backend.segmentation: [JOB 3f1f91ed35624099bffaf23f5c5badc3] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:11:28,401 INFO backend.segmentation: [JOB 3f1f91ed35624099bffaf23f5c5badc3] done (simplified, 0 masks)
-2026-05-11 17:11:28,401 INFO backend.segmentation: [UPLOAD_BG] DONE 0.027s at 2026-05-11T23:11:28.401201+00:00
-2026-05-11 17:11:28,401 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:19:23,122 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:19:23,122 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:19:25,153 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:19:25,157 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:19:25,157 WARNING backend.segmentation: Lifespan startup cancelled. Releasing resources.
-2026-05-11 17:19:25,157 INFO backend.segmentation: Releasing resources (full_unload=True)
-2026-05-11 17:19:25,192 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:19:25,193 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:19:26,642 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:19:26,646 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:19:57,031 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:19:57,031 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:19:58,900 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:19:58,903 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:19:58,904 WARNING backend.segmentation: Lifespan startup cancelled. Releasing resources.
-2026-05-11 17:19:58,904 INFO backend.segmentation: Releasing resources (full_unload=True)
-2026-05-11 17:19:58,935 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:19:58,935 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:20:00,569 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:20:00,574 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:23:04,040 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:23:04,040 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:23:05,765 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:23:05,778 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:23:05,778 WARNING backend.segmentation: Lifespan startup cancelled. Releasing resources.
-2026-05-11 17:23:05,778 INFO backend.segmentation: Releasing resources (full_unload=True)
-2026-05-11 17:23:05,805 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:23:05,805 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:23:07,223 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:23:07,237 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:23:38,986 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0264fa2cee8192599ed7d0"}, "remainingTimeMS": 30}
-2026-05-11 17:23:42,830 INFO backend.segmentation: [UPLOAD_BG] START at 2026-05-11T23:23:42.830320+00:00
-2026-05-11 17:23:42,831 INFO backend.segmentation: [JOB f67851b861634797a6d951fb8eb77d1c] preparing_image progress=12
-2026-05-11 17:23:42,987 INFO backend.segmentation: [JOB f67851b861634797a6d951fb8eb77d1c] segmenting_with_sam2 progress=30 estimated_seconds=49.28768
-2026-05-11 17:23:42,988 INFO backend.segmentation: [JOB f67851b861634797a6d951fb8eb77d1c] done (simplified, 0 masks)
-2026-05-11 17:23:42,989 INFO backend.segmentation: [UPLOAD_BG] DONE 0.158s at 2026-05-11T23:23:42.989362+00:00
-2026-05-11 17:23:42,989 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:23:50,263 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:23:50,263 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:23:52,250 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:23:52,264 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:23:52,452 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a02650807bfc227790002e0"}, "remainingTimeMS": 30}
-2026-05-11 17:35:48,564 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:35:48,564 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:35:51,035 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:35:51,056 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:35:51,056 WARNING backend.segmentation: Lifespan startup cancelled. Releasing resources.
-2026-05-11 17:35:51,056 INFO backend.segmentation: Releasing resources (full_unload=True)
-2026-05-11 17:35:51,100 INFO backend.segmentation: Lifespan exiting; releasing resources.
-2026-05-11 17:35:51,100 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:35:52,795 INFO backend.segmentation: [STARTUP] GRADIO_SPACE_URL=http://localhost:7860
-2026-05-11 17:35:52,809 INFO backend.segmentation: [SAM2] SAM2 disabled (using Simplified OpenAI flow)
-2026-05-11 17:39:57,426 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0268cd69c7f8481e63f142"}, "remainingTimeMS": 30}
-2026-05-11 17:40:06,587 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:40:06.587125+00:00
-2026-05-11 17:40:06,587 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.000s at 2026-05-11T23:40:06.587125+00:00
-2026-05-11 17:40:06,587 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:42:20,430 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a02695c8c7c9cbbe3d73a93"}, "remainingTimeMS": 30}
-2026-05-11 17:42:23,168 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a02695fd14dfcab99b31bb0"}, "remainingTimeMS": 30}
-2026-05-11 17:42:24,195 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:42:24.195000+00:00
-2026-05-11 17:42:24,207 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.012s at 2026-05-11T23:42:24.207474+00:00
-2026-05-11 17:42:24,208 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:42:49,195 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:42:49.195264+00:00
-2026-05-11 17:42:49,202 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.007s at 2026-05-11T23:42:49.202264+00:00
-2026-05-11 17:42:49,202 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:42:50,897 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:42:50.897139+00:00
-2026-05-11 17:42:50,905 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.008s at 2026-05-11T23:42:50.905145+00:00
-2026-05-11 17:42:50,905 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:42:54,729 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:42:54.729010+00:00
-2026-05-11 17:42:54,737 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.008s at 2026-05-11T23:42:54.737010+00:00
-2026-05-11 17:42:54,737 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:44:02,023 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:44:02.023505+00:00
-2026-05-11 17:44:02,031 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.007s at 2026-05-11T23:44:02.031502+00:00
-2026-05-11 17:44:02,031 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:44:06,912 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:44:06.912421+00:00
-2026-05-11 17:44:06,919 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.007s at 2026-05-11T23:44:06.919421+00:00
-2026-05-11 17:44:06,919 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:44:08,458 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:44:08.458048+00:00
-2026-05-11 17:44:08,465 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.007s at 2026-05-11T23:44:08.465047+00:00
-2026-05-11 17:44:08,466 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:44:15,785 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:44:15.785067+00:00
-2026-05-11 17:44:15,792 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.008s at 2026-05-11T23:44:15.792067+00:00
-2026-05-11 17:44:15,793 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:44:45,666 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0269eda4c4e67897e4de91"}, "remainingTimeMS": 30}
-2026-05-11 17:44:50,557 INFO backend.segmentation: [APPLY_TEXTURE_AI] START at 2026-05-11T23:44:50.557167+00:00
-2026-05-11 17:44:50,565 INFO backend.segmentation: [APPLY_TEXTURE_AI] DONE 0.007s at 2026-05-11T23:44:50.565142+00:00
-2026-05-11 17:44:50,565 INFO backend.segmentation: Releasing resources (full_unload=False)
-2026-05-11 17:44:52,481 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0269f4a4c4e67897e4de92"}, "remainingTimeMS": 30}
-2026-05-11 17:44:52,482 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0269f4a4c4e67897e4de92"}, "remainingTimeMS": 30}
-2026-05-11 17:46:59,700 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026a73d56a3146484b59dd"}, "remainingTimeMS": 30}
-2026-05-11 17:47:05,233 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026a79d56a3146484b59de"}, "remainingTimeMS": 30}
-2026-05-11 17:47:05,234 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026a79d56a3146484b59de"}, "remainingTimeMS": 30}
-2026-05-11 17:47:30,427 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 17:47:56,420 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 17:50:02,713 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026b2ac773958e310a1326"}, "remainingTimeMS": 30}
-2026-05-11 17:50:04,167 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026b2cc773958e310a1327"}, "remainingTimeMS": 30}
-2026-05-11 17:50:04,207 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026b2cc773958e310a1327"}, "remainingTimeMS": 30}
-2026-05-11 17:50:34,550 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 17:51:14,601 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 17:57:39,513 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026cf3162482e62cf7ea3e"}, "remainingTimeMS": 30}
-2026-05-11 17:57:42,313 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026cf6472643c8c1e786d8"}, "remainingTimeMS": 30}
-2026-05-11 17:58:01,618 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 17:58:27,575 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 17:59:21,451 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 17:59:29,572 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026d61676e4e120285cb22"}, "remainingTimeMS": 30}
-2026-05-11 17:59:32,127 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a026d649325671c76e0d3cc"}, "remainingTimeMS": 30}
-2026-05-11 18:00:00,476 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 18:00:20,146 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 18:00:36,292 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 18:13:24,578 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 18:22:57,043 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0272e19325671c76e0d3cd"}, "remainingTimeMS": 30}
-2026-05-11 18:22:57,044 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0272e19325671c76e0d3cd"}, "remainingTimeMS": 30}
-2026-05-11 18:23:24,738 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 18:43:21,019 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0277a9666e7bcf74e6e618"}, "remainingTimeMS": 30}
-2026-05-11 18:47:06,723 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a02788a666e7bcf74e6e619"}, "remainingTimeMS": 30}
-2026-05-11 18:47:06,724 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a02788a666e7bcf74e6e619"}, "remainingTimeMS": 30}
-2026-05-11 18:47:14,864 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0278924b3f5d3d0d27e63c"}, "remainingTimeMS": 30}
-2026-05-11 18:47:17,556 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0278954a12dd2c11934073"}, "remainingTimeMS": 30}
-2026-05-11 18:47:40,240 INFO httpx: HTTP Request: POST https://api.openai.com/v1/images/edits "HTTP/1.1 200 OK"
-2026-05-11 18:47:53,426 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0278b94a12dd2c11934074"}, "remainingTimeMS": 30}
-2026-05-11 18:47:53,426 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a0278b94a12dd2c11934074"}, "remainingTimeMS": 30}
-2026-05-11 19:06:05,368 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a027cfda87b46fdcade70c0"}, "remainingTimeMS": 30}
-2026-05-11 19:06:12,738 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a027d04a87b46fdcade70c1"}, "remainingTimeMS": 30}
-2026-05-11 19:06:12,739 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a027d04a87b46fdcade70c1"}, "remainingTimeMS": 30}
-2026-05-11 19:08:06,520 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a027d761ac5024147e14ddd"}, "remainingTimeMS": 30}
-2026-05-11 19:08:47,155 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a027d9f1ac5024147e14dde"}, "remainingTimeMS": 30}
-2026-05-11 19:08:47,218 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "find", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a027d9f1ac5024147e14dde"}, "remainingTimeMS": 30}
-2026-05-11 19:09:25,574 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ", , ]>", "clientId": {"$oid": "6a027dc593faabe7b94d01db"}, "remainingTimeMS": 30}
-2026-05-11 19:09:28,759 INFO pymongo.serverSelection: {"message": "Waiting for suitable server to become available", "selector": "Primary()", "operation": "count", "topologyDescription": ",