目录
python中权重剪枝,低秩分解,量化技术 代码
权重剪枝
低秩分解
scipy
量化技术
python中权重剪枝,低秩分解,量化技术 代码
权重剪枝
权重剪枝可以通过PyTorch的torch.nn.utils.prune
模块实现。以下是一个简单的例子:
import torch
import torch.nn as nn
import torch.nn.utils.prune as pruneclass SimpleNet(nn.Module):def __init__(self):super(SimpleNet, self).__init__()self.conv1 = nn.Conv2d(1, 10, kernel_size=5)self.fc1 = nn.Linear(10*12*12, 50)self.fc2 = nn.Linear(50, 10)def forwar