File size: 313 Bytes
a9bd396 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import torch.nn as nn
from transformers.models.llama.modeling_llama import LlamaDecoderLayer
class TestSuffixDecoderLayer(nn.module):
pass
# Here, we want to add "Llama" as a suffix to the base `TestModel` name for all required dependencies
class TestSuffixLlamaDecoderLayer(LlamaDecoderLayer):
pass
|