sea-lion-7b / fc.py
xianbin's picture
Add 7B model files
85aeb62
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