e982800b81dbc636cc8505eecd47b6fdea02c4dc,pytorch_lightning/trainer/trainer.py,Trainer,predict,#Trainer#Any#Any#Any#,911

Before Change


                "You cannot pass dataloaders to trainer.predict if you supply a datamodule."
            )

        if model is None:
            raise MisconfigurationException("You need to pass a model to `trainer.predict`.")

        if datamodule is not None:
            // Attach datamodule to get setup/prepare_data added to model before the call to it below
            self.data_connector.attach_datamodule(model, datamodule, "test")

After Change


        // --------------------
        // If you supply a datamodule you can"t supply dataloaders

        model = model or self.get_model()

        self._set_running_stage(RunningStage.PREDICTING, model)

        if dataloaders and datamodule:
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 5

Non-data size: 3

Instances


Project Name: williamFalcon/pytorch-lightning
Commit Name: e982800b81dbc636cc8505eecd47b6fdea02c4dc
Time: 2021-02-16
Author: thomas@grid.ai
File Name: pytorch_lightning/trainer/trainer.py
Class Name: Trainer
Method Name: predict


Project Name: dmlc/gluon-cv
Commit Name: 2318052dc79966bf36675606b7d992a347418292
Time: 2019-01-07
Author: cheungchih@gmail.com
File Name: scripts/detection/ssd/train_ssd.py
Class Name:
Method Name:


Project Name: dmlc/gluon-cv
Commit Name: 2318052dc79966bf36675606b7d992a347418292
Time: 2019-01-07
Author: cheungchih@gmail.com
File Name: scripts/detection/yolo/train_yolo3.py
Class Name:
Method Name:


Project Name: williamFalcon/pytorch-lightning
Commit Name: e806bb77fa070f810cc35c560aa4c49d7487428e
Time: 2021-01-13
Author: aedu.waelchli@gmail.com
File Name: pytorch_lightning/trainer/training_loop.py
Class Name: TrainLoop
Method Name: setup_training


Project Name: williamFalcon/pytorch-lightning
Commit Name: e806bb77fa070f810cc35c560aa4c49d7487428e
Time: 2021-01-13
Author: aedu.waelchli@gmail.com
File Name: pytorch_lightning/trainer/properties.py
Class Name: TrainerProperties
Method Name: progress_bar_dict