Safetensors
mpt
Krutrim
language-model
custom_code
krutrim-admin's picture
Upload folder using huggingface_hub
8c8ed60 verified
raw
history blame
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