This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get remove --purge '^nvidia-.*' | |
sudo ubuntu-drivers autoinstall | |
sudo reboot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytorch_lightning as pl | |
... | |
# override this method on pytorch-lightning model | |
def on_predict_epoch_end(self, results): | |
# gather all results onto each device | |
# find created world_size from pl.trainer | |
results = all_gather(results[0], WORLD_SIZE, self._device) | |
# concatenate on the cpu | |
results = torch.concat([x.cpu() for x in results], dim=1) | |
# output will not preserve input order. |