build_model_from_file error

#1
by licheng01 - opened
    xeus_model, xeus_train_args = SSLTask.build_model_from_file(
        config_file = None,
        model_file = path,
        device = self.device,
    )
ESPnet org

Whoops! I was being too verbose in the instructions. Can you try with:

xeus_model, xeus_train_args = SSLTask.build_model_from_file(
    None,
    '/path/to/checkpoint/here/checkpoint.pth',
    self.device,
)

Sign up or log in to comment