Spaces:
Running
on
Zero
Running
on
Zero
File size: 572 Bytes
262b155 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# デバッグ用...
import torch
def check_requires_grad(model: torch.nn.Module):
for name, module in list(model.named_modules())[:5]:
if len(list(module.parameters())) > 0:
print(f"Module: {name}")
for name, param in list(module.named_parameters())[:2]:
print(f" Parameter: {name}, Requires Grad: {param.requires_grad}")
def check_training_mode(model: torch.nn.Module):
for name, module in list(model.named_modules())[:5]:
print(f"Module: {name}, Training Mode: {module.training}")
|