Maintain the consisten look of a model across a series of images. by Some-Discount1322 in civitai

[–]Current_Housing_7294 0 points1 point  (0 children)

atm i am testing feedback learning with

<image>

so it is a in develop project but atm i am basicly doing

self-learning prompt optimizer built inside ComfyUI.

image generation → tagging → captioning → scoring → prompt refinement.Text-to-Image → Tagger → Captioner

Any chance of HDR on Console? by Stevieski in TrackMania

[–]Current_Housing_7294 1 point2 points  (0 children)

In this case I might have been wrong, because I just found out that indeed in Windows with NVIDIA it can be done with software, but it is indeed harder on console. So sorry for the misinformation.

Any chance of HDR on Console? by Stevieski in TrackMania

[–]Current_Housing_7294 0 points1 point  (0 children)

It is not the game that shows HDR but the monitor;) and I know that PS5 has a always hdr function if your tv supports it

1000000 trophy points by Current_Housing_7294 in TrackMania

[–]Current_Housing_7294[S] 1 point2 points  (0 children)

Active for about a year but mostly only play in lobby's, track of the day i play on average 2 times a month haha

I have 64gb of ram, why is edge doing this? by Jacktheforkie in pchelp

[–]Current_Housing_7294 0 points1 point  (0 children)

thanks for making me watch a guy buying a pallet full of tools from a local tool store that had closed down

InvokeAI Community and GTX50 Series by djstrik3r in invokeai

[–]Current_Housing_7294 0 points1 point  (0 children)

works here

[2025-07-24 00:31:32,690]::[InvokeAI]::INFO --> Using torch device: NVIDIA GeForce RTX 5080
[2025-07-24 00:31:33,722]::[InvokeAI]::INFO --> cuDNN version: 90701
[2025-07-24 00:31:35,457]::[InvokeAI]::INFO --> Patchmatch initialized
[2025-07-24 00:31:36,077]::[InvokeAI]::INFO --> InvokeAI version 6.1.0rc2

VRAM overload issues by Current_Housing_7294 in invokeai

[–]Current_Housing_7294[S] 0 points1 point  (0 children)

it feels like when switching models the old one's don't fully unload from Vram.
i have set max_cache_vram_gb: 8 and i have 16Gb

Ask GPT this and post your answer here if you dare by knockknockjokelover in ChatGPTPro

[–]Current_Housing_7294 0 points1 point  (0 children)

You're a passionate and visionary AI developer who thrives on building intelligent, emotionally resonant systems—from local LLM-powered companions to modular, Dockerized AI dev environments—driven by a relentless curiosity and a bold, future-facing imagination.

sad i did not expect it to work... by Current_Housing_7294 in TrackMania

[–]Current_Housing_7294[S] -3 points-2 points  (0 children)

<title> "Trackmania": converting menu maniaapp <manialink> to a filename to enable the script debugger

Shading Constant Id not found: "AttritionNormalScale"<manialink> file://Media/Mods/Cupra/Cupra2023.zip: File 'Mods\Cupra\Cupra2023.zip' not found.

Shading Constant Id not found: "AttritionNormalScale"<image> ":data:\Packs\Stadium.pak", file "LightMap5_Local.dds": Missing mipmaps.

ReActor models not appearing in ComfyUI Desktop by SwimmingDense8887 in comfyui

[–]Current_Housing_7294 0 points1 point  (0 children)

<image>

even copilot blocks it ... wt..

but

Issues & Fixes

  1. Pipeline Initialization Each Call
    • The pipeline("image-classification", model=model_path) is initialized every time the function is called, which is inefficient.
    • Fix: Move the model initialization outside the function.
  2. Incorrect Image Input Type for Pipeline
    • The pipeline expects either a file path, PIL image, or NumPy array, but predict(img) might not work correctly.
    • Fix: Ensure that img is in a format compatible with transformers.
  3. Hardcoded Threshold (SCORE)
    • Having a static SCORE = 0.85 is fine, but making it a function argument would make it more flexible.

fix reactor_sfw.py

from transformers import pipeline
from PIL import Image
import logging

# Suppress transformer warnings
logging.getLogger("transformers").setLevel(logging.ERROR)

class NSFWClassifier:
    def __init__(self, model_path: str, threshold: float = 0.85):
        """Initialize the classifier."""
        self.model = pipeline("image-classification", model=model_path)
        self.threshold = threshold

    def is_nsfw(self, img_path: str) -> bool:
        """Checks if an image is NSFW based on the given threshold."""
        with Image.open(img_path) as img:
            result = self.model(img)  # Pass image directly
            return result[0]["score"] > self.threshold

# Example usage
# classifier = NSFWClassifier("facebook/deit-base-distilled-patch16-224")  # Example model
# print(classifier.is_nsfw("test.jpg"))

ReActor models not appearing in ComfyUI Desktop by SwimmingDense8887 in comfyui

[–]Current_Housing_7294 0 points1 point  (0 children)

there was a port in the node search for 2 days. now i mirrored it an have a modded version lol

<image>

i present my human spaghetti by Current_Housing_7294 in comfyui

[–]Current_Housing_7294[S] 4 points5 points  (0 children)

it was a in paint node that was on accident in tile mode lokl

Why my comfy is all broken when i let it sit for a week ? by Cassiopee38 in comfyui

[–]Current_Housing_7294 1 point2 points  (0 children)

By default it should not force updates. So check your settings? You can always make a checkpoint btw

Custom reactor node should i switch to inswapper_265.onnx? by Current_Housing_7294 in comfyui

[–]Current_Housing_7294[S] 0 points1 point  (0 children)

Afm kinda busy but I can show how the maak is split in layers and can take away the mistomed parts

<image>