WordPress database error: [Table 'wordpress.wp_ip_tracking' doesn't exist]
SELECT COUNT(*) FROM wp_ip_tracking WHERE ip_address = '216.73.216.34'

February 2024 – Comrite blogs

Month: February 2024

How to run stable diffusion on CPU boxes

Docker image: https://hub.docker.com/r/siutin/stable-diffusion-webui-docker docker pull siutin/stable-diffusion-webui-docker:latest-cpu   https://github.com/siutin/stable-diffusion-webui-docker Run it: docker run -it –name sdw –network host -v $(pwd)/models:/app/stable-diffusion-webui/models -v $(pwd)/outputs:/app/stable-diffusion-webui/outputs –rm siutin/stable-diffusion-webui-docker:latest-cpu bash webui.sh –skip-torch-cuda-test –no-half –use-cpu all –share…