File size: 454 Bytes
ef217c5
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-

from transformers import AutoConfig, AutoModel, AutoModelForCausalLM

from fla.models.rwkv7.configuration_rwkv7 import RWKV7Config
from fla.models.rwkv7.modeling_rwkv7 import RWKV7ForCausalLM, RWKV7Model

AutoConfig.register(RWKV7Config.model_type, RWKV7Config)
AutoModel.register(RWKV7Config, RWKV7Model)
AutoModelForCausalLM.register(RWKV7Config, RWKV7ForCausalLM)


__all__ = ['RWKV7Config', 'RWKV7ForCausalLM', 'RWKV7Model']