the LyCORIS model can now be used as if there were a regular LoRA model (#20)

pull/22/head
Bagus Vendi Vannessa 2023-12-19 07:07:21 +07:00 committed by GitHub
parent 8bf74541a1
commit ed3a2cf084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ parser.add_argument('--vae-dir', type=str, default=os.path.join(models_path, 'VA
parser.add_argument('--embeddings-dir', type=str, default=os.path.join(data_path, 'embeddings'))
parser.add_argument('--hypernetwork-dir', type=str, default=os.path.join(models_path, 'hypernetworks'))
parser.add_argument('--lora-dir', type=str, default=os.path.join(models_path, 'Lora'))
parser.add_argument('--lyco-dir', type=str, default=os.path.join(models_path, 'LyCORIS'))
#Starting from stable-diffusion-webui version 1.5.0 - version 1.6.1, the lycoris extension is no longer required, All its features have been integrated into the original LoRA extension, LyCORIS models can now be used as if there were regular LoRA models.
parser.add_argument('--lyco-dir', type=str, default=os.path.join(models_path, 'Lora'))
args, _ = parser.parse_known_args()
if not os.path.exists(os.path.join(sd_path, 'html', 'card-no-preview.png')):