mpt-125m-c4 / fc.py
wtang06's picture
Upload folder using huggingface_hub
c7e44ce
raw
history blame contribute delete
167 Bytes
from torch import nn
FC_CLASS_REGISTRY = {'torch': nn.Linear}
try:
import transformer_engine.pytorch as te
FC_CLASS_REGISTRY['te'] = te.Linear
except:
pass