Advertisement
magneto903

my_config

Nov 6th, 2023
668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.37 KB | None | 0 0
  1. {
  2.     "decoder": {  
  3.         "unet_sources": [
  4.             {
  5.                 "unet_numbers": [1],
  6.                 "default_cond_scale": [1.7],
  7.                 "load_model_from": {
  8.                     "load_type": "url",
  9.                     "path": "https://huggingface.co/laion/DALLE2-PyTorch/resolve/main/decoder/v1.0.2/latest.pth",
  10.                     "cache_dir": "./models",
  11.                     "filename_override": "new_decoder.pth"
  12.                 },
  13.                 "load_config_from": {
  14.                     "load_type": "url",
  15.                     "path": "https://huggingface.co/laion/DALLE2-PyTorch/raw/main/decoder/v1.0.2/decoder_config.json",
  16.                     "cache_dir": "./models",
  17.                     "filename_override": "decoder_config.json"
  18.                 }
  19.             },
  20.             {
  21.                 "unet_numbers": [2],
  22.                 "load_model_from": {
  23.                     "load_type": "url",
  24.                     "path": "https://huggingface.co/Veldrovive/upsamplers/resolve/main/working/latest.pth",
  25.                     "cache_dir": "./models",
  26.                     "filename_override": "second_decoder.pth"
  27.                 },
  28.                 "load_config_from": {
  29.                     "load_type": "url",
  30.                     "path": "https://huggingface.co/Veldrovive/upsamplers/raw/main/working/decoder_config.json",
  31.                     "checksum_file_path": "https://huggingface.co/Veldrovive/upsamplers/raw/main/working/decoder_config.json",
  32.                     "cache_dir": "./models",
  33.                     "filename_override": "second_decoder_config.json"
  34.                 }
  35.             }
  36.         ]
  37.     },
  38.     "prior": {
  39.         "load_model_from": {
  40.             "load_type": "url",
  41.             "path": "https://huggingface.co/laion/DALLE2-PyTorch/resolve/main/prior/latest.pth",
  42.             "cache_dir": "./models",
  43.             "filename_override": "prior.pth"
  44.         },
  45.         "load_config_from": {
  46.             "load_type": "url",
  47.             "path": "https://huggingface.co/laion/DALLE2-PyTorch/raw/main/prior/prior_config.json",
  48.             "checksum_file_path": "https://huggingface.co/laion/DALLE2-PyTorch/raw/main/prior/prior_config.json",
  49.             "cache_dir": "./models"
  50.         }
  51.     },
  52.     "clip": {
  53.         "make": "openai",
  54.         "model": "ViT-L/14"
  55.     },
  56.  
  57.     "devices": "cuda:0",
  58.     "strict_loading": false
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement