Text Generation
Transformers
PyTorch
Thai
English
mpt
custom_code
text-generation-inference
Rasu23's picture
Upload MPTForCausalLM
cd7c35a
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