File tree Expand file tree Collapse file tree 1 file changed +20
-3
lines changed
docs/source-pytorch/common Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -83,13 +83,30 @@ with the source of each hook indicated:
83
83
trainer.fit()
84
84
│
85
85
├── setup(stage="fit")
86
- │ └── [Callbacks only]
87
- │
88
- ├── on_fit_start()
86
+ │ ├── [LightningDataModule]
89
87
│ ├── [Callbacks]
90
88
│ ├── [LightningModule]
89
+ │ ├── [LightningModule.configure_shared_model()]
90
+ │ ├── [LightningModule.configure_model()]
91
+ │ ├── Strategy.restore_checkpoint_before_setup
92
+ │ │ ├── [LightningModule.on_load_checkpoint()]
93
+ │ │ ├── [LightningModule.load_state_dict()]
94
+ │ │ ├── [LightningDataModule.load_state_dict()]
95
+ │ │ ├── [Callbacks.on_load_checkpoint()]
96
+ │ │ └── [Callbacks.load_state_dict()]
91
97
│ └── [Strategy]
92
98
│
99
+ ├── on_fit_start()
100
+ │ ├── [Callbacks]
101
+ │ └── [LightningModule]
102
+ │
103
+ ├── Strategy.restore_checkpoint_after_setup
104
+ │ ├── [LightningModule.on_load_checkpoint()]
105
+ │ ├── [LightningModule.load_state_dict()]
106
+ │ ├── [LightningDataModule.load_state_dict()]
107
+ │ ├── [Callbacks.on_load_checkpoint()]
108
+ │ └── [Callbacks.load_state_dict()]
109
+ │
93
110
├── on_sanity_check_start()
94
111
│ ├── [Callbacks]
95
112
│ ├── [LightningModule]
You can’t perform that action at this time.
0 commit comments