This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Only in sd2: LICENSE-MODEL | |
| Only in sd2/assets: stable-inpainting | |
| Only in sd2/assets/stable-samples: depth2img | |
| Only in sd2/assets/stable-samples/txt2img: 768 | |
| Only in sd2/assets/stable-samples: upscaling | |
| Only in sd1/configs: autoencoder | |
| Only in sd1/configs: latent-diffusion | |
| Only in sd1/configs: retrieval-augmented-diffusion | |
| Only in sd1/configs/stable-diffusion: v1-inference.yaml | |
| Only in sd2/configs/stable-diffusion: v2-inference-v.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| model: | |
| base_learning_rate: 1.0e-4 | |
| target: ldm.models.diffusion.ddpm.LatentDiffusion | |
| params: | |
| parameterization: "v" | |
| linear_start: 0.00085 | |
| linear_end: 0.0120 | |
| num_timesteps_cond: 1 | |
| log_every_t: 200 | |
| timesteps: 1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| MODEL_PATH = "F:/models/stable-diffusion/sd-v1-4.ckpt" | |
| CONFIG_PATH = "F:/models/stable-diffusion/v1-inference.yaml" | |
| def diff(): | |
| print('diffusers') | |
| import torch | |
| from transformers import logging as tr_logging | |
| tr_logging.set_verbosity_error() # suppress unnecessary logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Runs the desired Stable Diffusion models against the desired samplers. Saves the output images | |
| to disk, along with the peak RAM and VRAM usage, as well as the sampling performance. | |
| """ | |
| import argparse | |
| import os | |
| import time | |
| import traceback | |
| from pathlib import Path |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| MODEL_PATH = "F:/models/stable-diffusion/sd-v1-4.ckpt" | |
| CONFIG_PATH = "F:/models/stable-diffusion/v1-inference.yaml" | |
| DEVICE = "mps" # or "cuda" or "cpu" | |
| def diff(): | |
| print('diffusers') | |
| import torch | |
| from transformers import logging as tr_logging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from sdkit import Context | |
| from sdkit.generate import generate_images | |
| from sdkit.utils import load_tensor_file, save_tensor_file | |
| from ldm.util import instantiate_from_config | |
| from omegaconf import OmegaConf | |
| import time | |
| model_path = "/path/to/models/stable-diffusion/sd-v1-4.ckpt" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import torch | |
| import tensorrt as trt | |
| from polygraphy import cuda | |
| import sys | |
| from packaging import version | |
| from diffusers import StableDiffusionPipeline | |
| from diffusers.pipelines.onnx_utils import OnnxRuntimeModel, ORT_TO_NP_TYPE | |
| from dataclasses import dataclass | |
| import numpy as np | |
| import onnxruntime as ort |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import os | |
| import platform | |
| from importlib.metadata import version as pkg_version | |
| from sdkit.utils import log | |
| from easydiffusion import app | |
| # future home of scripts/check_modules.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pefile | |
| import sys | |
| if len(sys.argv) < 2: | |
| print("Error: No file path specified. Usage: python hexdump.py <file_path>") | |
| sys.exit(1) | |
| file_path = sys.argv[1] | |
| try: |