|
import os |
|
|
|
os.chdir(f"/home/xlab-app-center") |
|
os.system(f"git clone https://openi.pcl.ac.cn/2575044704/stable-diffusion-webui-v1.6.1 /home/xlab-app-center/stable-diffusion-webui") |
|
os.system(f"cp /home/xlab-app-center/styles.csv /home/xlab-app-center/stable-diffusion-webui/styles.csv") |
|
os.chdir(f"/home/xlab-app-center/stable-diffusion-webui") |
|
os.system(f"git lfs install") |
|
os.system(f"git reset --hard") |
|
os.chdir(f"/home/xlab-app-center/stable-diffusion-webui/extensions") |
|
|
|
plugins = [ |
|
"https://gitcode.net/overbill1683/stable-diffusion-webui-localization-zh_Hans", |
|
"https://gitcode.net/ranting8323/multidiffusion-upscaler-for-automatic1111", |
|
"https://gitcode.net/ranting8323/adetailer", |
|
"https://gitcode.net/ranting8323/sd-webui-prompt-all-in-one", |
|
"https://gitcode.net/ranting8323/sd-webui-inpaint-anything", |
|
"https://gitcode.net/ranting8323/a1111-sd-webui-tagcomplete", |
|
"https://gitcode.net/nightaway/sd-webui-infinite-image-browsing", |
|
"https://openi.pcl.ac.cn/2575044704/sd-extension-system-info", |
|
"https://openi.pcl.ac.cn/2575044704/batchlinks-webui" |
|
] |
|
|
|
for plugin in plugins: |
|
os.system(f"git clone {plugin}") |
|
os.makedirs('/home/xlab-app-center/stable-diffusion-webui/models/adetailer', exist_ok=True) |
|
os.chdir(f"/home/xlab-app-center/stable-diffusion-webui/models/adetailer") |
|
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://hf-mirror.com/Bingsu/adetailer/resolve/main/hand_yolov8s.pt -d /home/xlab-app-center/stable-diffusion-webui/models/adetailer -o hand_yolov8s.pt") |
|
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://hf-mirror.com/Bingsu/adetailer/resolve/main/hand_yolov8n.pt -d /home/xlab-app-center/stable-diffusion-webui/models/adetailer -o hand_yolov8n.pt") |
|
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://hf-mirror.com/datasets/ACCC1380/private-model/resolve/main/kaggle/input/museum/131-half.safetensors -d /home/xlab-app-center/stable-diffusion-webui/models/Stable-diffusion -o 131-half.safetensors") |
|
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://hf-mirror.com/datasets/ACCC1380/private-model/resolve/main/ba.safetensors -d /home/xlab-app-center/stable-diffusion-webui/models/Lora -o ba.safetensors") |
|
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://hf-mirror.com/datasets/ACCC1380/private-model/resolve/main/racaco2.safetensors -d /home/xlab-app-center/stable-diffusion-webui/models/Lora -o racaco2.safetensors") |
|
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://hf-mirror.com/coinz/Add-detail/resolve/main/add_detail.safetensors -d /home/xlab-app-center/stable-diffusion-webui/models/Lora -o add_detail.safetensors") |
|
os.system(f"aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://hf-mirror.com/datasets/VASVASVAS/vae/resolve/main/pastel-waifu-diffusion.vae.pt -d /home/xlab-app-center/stable-diffusion-webui/models/VAE -o pastel-waifu-diffusion.vae.pt") |
|
|
|
|
|
os.chdir(f"/home/xlab-app-center/stable-diffusion-webui") |
|
print('webui launching...') |
|
package_envs = [ |
|
{"env": "STABLE_DIFFUSION_REPO", "url": os.environ.get('STABLE_DIFFUSION_REPO', "https://gitcode.net/overbill1683/stablediffusion")}, |
|
{"env": "STABLE_DIFFUSION_XL_REPO", "url": os.environ.get('STABLE_DIFFUSION_XL_REPO', "https://gitcode.net/overbill1683/generative-models")}, |
|
{"env": "K_DIFFUSION_REPO", "url": os.environ.get('K_DIFFUSION_REPO', "https://gitcode.net/overbill1683/k-diffusion")}, |
|
{"env": "CODEFORMER_REPO", "url": os.environ.get('CODEFORMER_REPO', "https://gitcode.net/overbill1683/CodeFormer")}, |
|
{"env": "BLIP_REPO", "url": os.environ.get('BLIP_REPO', "https://gitcode.net/overbill1683/BLIP")}, |
|
] |
|
os.environ["PIP_INDEX_URL"] = "https://mirrors.aliyun.com/pypi/simple/" |
|
for i in package_envs: |
|
os.environ[i["env"]] = i["url"] |
|
|
|
import os |
|
import time |
|
import wandb |
|
|
|
import os |
|
import time |
|
import wandb |
|
|
|
|
|
os.system('wandb login 5c00964de1bb95ec1ab24869d4c523c59e0fb8e3') |
|
|
|
|
|
wandb.init(project="gpu-temperature-monitor") |
|
|
|
import os |
|
import threading |
|
import wandb |
|
import time |
|
def wandb(): |
|
|
|
|
|
|
|
while True: |
|
|
|
gpu_temperature_command = "nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader,nounits" |
|
gpu_temperature = int(os.popen(gpu_temperature_command).read().strip()) |
|
gpu_usage_command = "nvidia-smi --query-gpu=utilization.gpu --format=csv,noheader,nounits" |
|
gpu_usage = int(os.popen(gpu_usage_command).read().strip()) |
|
|
|
wandb.log({"GPU 温度": gpu_temperature, "GPU 使用率": gpu_usage}) |
|
time.sleep(60) |
|
|
|
def start(): |
|
os.system(f"python launch.py --api --xformers --enable-insecure-extension-access --ui-settings-file /home/xlab-app-center/config.json --ui-config-file /home/xlab-app-center/ui-config.json --gradio-queue --disable-safe-unpickle --ngrok=2Z4gIgLcc0W20vmdmTHTgwlWXdR_5aHNP91mnkn1mFYXUKKEz") |
|
|
|
|
|
wandb_thread = threading.Thread(target=wandb) |
|
start_thread = threading.Thread(target=start) |
|
|
|
|
|
wandb_thread.start() |
|
start_thread.start() |
|
|
|
|
|
wandb_thread.join() |
|
start_thread.join() |
|
|