Add dataset folder

This commit is contained in:
Kohaku-Blueleaf 2026-07-07 19:46:25 +08:00
parent 7cf4e78335
commit ac5569f2a0
2 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@
# upscale_models: models/upscale_models/ # upscale_models: models/upscale_models/
# latent_upscale_models: models/latent_upscale_models/ # latent_upscale_models: models/latent_upscale_models/
# custom_nodes: custom_nodes/ # custom_nodes: custom_nodes/
# datasets: datasets/
# hypernetworks: models/hypernetworks/ # hypernetworks: models/hypernetworks/
# photomaker: models/photomaker/ # photomaker: models/photomaker/
# classifiers: models/classifiers/ # classifiers: models/classifiers/

View File

@ -40,6 +40,8 @@ folder_names_and_paths["latent_upscale_models"] = ([os.path.join(models_dir, "la
folder_names_and_paths["custom_nodes"] = ([os.path.join(base_path, "custom_nodes")], set()) folder_names_and_paths["custom_nodes"] = ([os.path.join(base_path, "custom_nodes")], set())
folder_names_and_paths["datasets"] = ([os.path.join(base_path, "datasets")], set())
folder_names_and_paths["hypernetworks"] = ([os.path.join(models_dir, "hypernetworks")], supported_pt_extensions) folder_names_and_paths["hypernetworks"] = ([os.path.join(models_dir, "hypernetworks")], supported_pt_extensions)
folder_names_and_paths["photomaker"] = ([os.path.join(models_dir, "photomaker")], supported_pt_extensions) folder_names_and_paths["photomaker"] = ([os.path.join(models_dir, "photomaker")], supported_pt_extensions)