rob-hen
rob-hen
### Description & Motivation As far as I can see, there is no way currently to do lazy instantiation. Let say, we want to create an object of class `path.to.B`...
### Bug description I am using a GPU to generate a result file (e.g. a video, text file, image,...). Then I do `self.logger.experiment.log_artifact( self.logger.run_id, artifact_path, log_folder)` to log the file....
I have a config file that I use with PyTorch Lightning's CLI. It has the form: config.yaml: ``` model: param1: val1 param2: val2 ``` corresponding to this I have a...
How can I do multi node training using slurm? I read that I have to add some code lines from [here](https://colossalai.org/docs/basics/launch_colossalai/#launch-with-slurm). I added to the `main` function before `dist.init_process_group` ```python...