bm003-ep6 / fc.py
fyfyfyfy28's picture
First model version
392a9b3
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