Add unload_model function

This commit is contained in:
OleehyO 2025-01-03 07:50:36 +00:00
parent a88c1ede69
commit f731c35f70

View File

@ -51,6 +51,10 @@ def free_memory() -> None:
# TODO(aryan): handle non-cuda devices
def unload_model(model):
model.to("cpu")
def make_contiguous(x: Union[torch.Tensor, Dict[str, torch.Tensor]]) -> Union[torch.Tensor, Dict[str, torch.Tensor]]:
if isinstance(x, torch.Tensor):
return x.contiguous()