mirror of https://github.com/hpcaitech/ColossalAI
14 lines
429 B
Python
14 lines
429 B
Python
|
# copied from https://github.com/qwopqwop200/GPTQ-for-LLaMa/blob/past/modelutils.py
|
||
|
|
||
|
import torch
|
||
|
import torch.nn as nn
|
||
|
|
||
|
|
||
|
def find_layers(module, layers=[nn.Conv2d, nn.Linear], name=''):
|
||
|
if type(module) in layers:
|
||
|
return {name: module}
|
||
|
res = {}
|
||
|
for name1, child in module.named_children():
|
||
|
res.update(find_layers(child, layers=layers, name=name + '.' + name1 if name != '' else name1))
|
||
|
return res
|