mirror of
https://github.com/deepspeedai/DeepSpeed.git
synced 2025-10-20 15:33:51 +08:00
13 lines
338 B
Python
13 lines
338 B
Python
'''Copyright The Microsoft DeepSpeed Team'''
|
|
|
|
import torch.nn as nn
|
|
|
|
|
|
class DeepSpeedTransformerBase(nn.module):
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
# this would be the new clean base class that will replace DeepSpeedTransformerInference.
|
|
# we currently don't know how this will look like but keeping it here as a placeholder.
|