File size: 459 Bytes
027051d
 
b4f40ad
 
027051d
b4f40ad
 
 
 
027051d
b4f40ad
1
2
3
4
5
6
7
8
9
10
11
12
from transformers import AutoConfig

from .configuration_laneformer import LaneformerConfig
from .modeling_laneformer import LaneformerForCausalLM, LaneformerModel

LaneformerConfig.register_for_auto_class()
LaneformerModel.register_for_auto_class("AutoModel")
LaneformerForCausalLM.register_for_auto_class("AutoModelForCausalLM")
AutoConfig.register("laneformer", LaneformerConfig)

__all__ = ["LaneformerConfig", "LaneformerModel", "LaneformerForCausalLM"]