Visit ComfyUI Online for ready-to-use ComfyUI environment
Facilitates saving model checkpoints with data type options for storage and performance optimization.
The AV_CheckpointSave
node is designed to facilitate the saving of model checkpoints within the Art Venture framework, specifically for model merging tasks. This node extends the functionality of the CheckpointSave
class by adding an option to save the model in different data types, such as float16
or float32
. This flexibility allows you to optimize the storage and performance of your models based on your specific needs. By converting the model to float16
, you can significantly reduce the file size, which is beneficial for storage and potentially faster loading times. The node ensures that the original save function is restored after the custom save operation, maintaining the integrity of the system.
This parameter represents the model that you want to save. It is a required input and should be a valid model object that you have trained or merged.
This parameter represents the CLIP model associated with your main model. It is a required input and should be a valid CLIP model object.
This parameter represents the VAE (Variational Autoencoder) associated with your main model. It is a required input and should be a valid VAE model object.
This parameter is a string that specifies the prefix for the filename under which the checkpoint will be saved. The default value is "checkpoints/ComfyUI". This helps in organizing and identifying your saved checkpoints.
This optional parameter allows you to specify the data type for saving the model. The available options are float16
and float32
, with the default being float16
. Choosing float16
can reduce the file size and potentially improve loading times, while float32
maintains higher precision.
This hidden parameter is used internally to store the prompt associated with the model. It is not required to be set manually.
This hidden parameter is used internally to store additional PNG information associated with the model. It is not required to be set manually.
This node does not produce any direct output parameters. Its primary function is to save the model checkpoint to the specified directory.
dtype
parameter to save your model in float16
if you want to reduce the file size and potentially improve loading times. This is particularly useful for large models.filename_prefix
is set appropriately to organize your saved checkpoints effectively. This helps in easily identifying and retrieving specific checkpoints later.model
, clip
, and vae
objects to avoid any errors during the saving process.filename_prefix
is correctly set.© Copyright 2024 RunComfy. All Rights Reserved.