ray.train.lightning.LightningConfigBuilder.fit_params#

LightningConfigBuilder.fit_params(**kwargs) ray.train.lightning.lightning_trainer.LightningConfigBuilder[source]#

The parameter lists for pytorch_lightning.Trainer.fit()

LightningTrainer creates a model instance with the parameters provided in module() and feeds it into the pl.Trainer.fit() method. Therefore, you do not need to provide a model instance here.

Parameters

kwargs – The parameter lists for pytorch_lightning.Trainer.fit() For valid arguments to pass, please refer to: https://lightning.ai/docs/pytorch/stable/common/trainer.html#fit.