mirror of https://github.com/hpcaitech/ColossalAI
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
550 B
20 lines
550 B
from typing import Set
|
|
|
|
import torch.nn as nn
|
|
|
|
|
|
def set_tensors_to_none(model: nn.Module, exclude: Set[nn.Module] = set()) -> None:
|
|
"""Set all parameters and buffers of model to None
|
|
|
|
Args:
|
|
model (nn.Module): The model to set
|
|
"""
|
|
if model in exclude:
|
|
return
|
|
for child in model.children():
|
|
set_tensors_to_none(child, exclude=exclude)
|
|
for n, p in model.named_parameters(recurse=False):
|
|
setattr(model, n, None)
|
|
for n, buf in model.named_buffers(recurse=False):
|
|
setattr(model, n, None)
|