JonusNattapong commited on
Commit
783aef6
·
verified ·
1 Parent(s): 7921319

Create configuration_thai_llm.py

Browse files
Files changed (1) hide show
  1. configuration_thai_llm.py +7 -0
configuration_thai_llm.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from transformers import PretrainedConfig
2
+
3
+ class ThaiLLMConfig(PretrainedConfig):
4
+ model_type = "thai_llm"
5
+
6
+ def __init__(self, **kwargs):
7
+ super().__init__(**kwargs)