Open ZhikangNiu opened 7 months ago
The resume_from_checkpoint
parameter should only be filled with the path to the checkpoint file XXXX.ckpt
output by PyTorch Lightning. However, what you might actually want is the load_from_checkpoint
parameter, which requires the directory path of the config.json
file and the model file (which can be in either the HF format or the PL format).
When I want to resume train causalvae in our own dataset with following script, it always report the following bug
here are my script
I'm sure the code is latest