Raziel1234 commited on
Commit
43f596d
verified
1 Parent(s): 16e0c9e

Upload 7 files

Browse files
config (14).json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DuchifatCore"
4
+ ],
5
+ "auto_map": {
6
+ "AutoConfig": "configuration_duchifat_v2.DuchifatConfig",
7
+ "AutoModelForCausalLM": "modeling_duchifat_v2.DuchifatCore"
8
+ },
9
+ "dtype": "bfloat16",
10
+ "hidden_size": 768,
11
+ "max_seq": 1024,
12
+ "model_type": "duchifat_v2",
13
+ "nhead": 12,
14
+ "num_layers": 12,
15
+ "transformers_version": "5.2.0",
16
+ "vocab_size": 33152
17
+ }
configuration_duchifat_v2.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers import PretrainedConfig
2
+
3
+ class DuchifatConfig(PretrainedConfig):
4
+ model_type = "duchifat_v2"
5
+
6
+ def __init__(
7
+ self,
8
+ vocab_size=50257,
9
+ hidden_size=768,
10
+ num_layers=12,
11
+ nhead=12,
12
+ max_seq=1024,
13
+ **kwargs
14
+ ):
15
+ super().__init__(**kwargs)
16
+ self.vocab_size = vocab_size
17
+ self.hidden_size = hidden_size
18
+ self.num_layers = num_layers
19
+ self.nhead = nhead
20
+ self.max_seq = max_seq
generation_config (6).json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "transformers_version": "5.2.0"
4
+ }
model (12).safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b633de8690e452d782eb01d841c2ab2ca9a61eeaf67200458669341b04365b8
3
+ size 273541208
modeling_duchifat_v2.py ADDED
@@ -0,0 +1,99 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+ import torch.nn as nn
3
+ import torch.nn.functional as F
4
+ from transformers import PreTrainedModel
5
+ from transformers.modeling_outputs import CausalLMOutput
6
+ from .configuration_duchifat_v2 import DuchifatConfig
7
+
8
+ class DuchifatBlock(nn.Module):
9
+ def __init__(self, config):
10
+ super().__init__()
11
+ self.ln1 = nn.LayerNorm(config.hidden_size)
12
+ self.qkv = nn.Linear(config.hidden_size, 3 * config.hidden_size)
13
+ self.wo = nn.Linear(config.hidden_size, config.hidden_size)
14
+ self.ln2 = nn.LayerNorm(config.hidden_size)
15
+ self.mlp = nn.Sequential(
16
+ nn.Linear(config.hidden_size, 4 * config.hidden_size),
17
+ nn.GELU(approximate='tanh'),
18
+ nn.Linear(4 * config.hidden_size, config.hidden_size)
19
+ )
20
+ self.n_head = config.nhead
21
+ self.head_dim = config.hidden_size // config.nhead
22
+
23
+ def forward(self, x):
24
+ norm_x = self.ln1(x)
25
+ B, T, C = norm_x.size()
26
+ qkv = self.qkv(norm_x).view(B, T, 3, self.n_head, self.head_dim).permute(2, 0, 3, 1, 4)
27
+ q, k, v = qkv[0], qkv[1], qkv[2]
28
+
29
+ # Flash Attention (SDPA)
30
+ attn_out = F.scaled_dot_product_attention(q, k, v, is_causal=True)
31
+ attn_out = attn_out.transpose(1, 2).contiguous().view(B, T, C)
32
+
33
+ x = x + self.wo(attn_out)
34
+ x = x + self.mlp(self.ln2(x))
35
+ return x
36
+
37
+ class DuchifatPreTrainedModel(PreTrainedModel):
38
+ config_class = DuchifatConfig
39
+ base_model_prefix = "model"
40
+ _no_split_modules = ["DuchifatBlock"]
41
+
42
+ class DuchifatCore(DuchifatPreTrainedModel):
43
+ def __init__(self, config):
44
+ super().__init__(config)
45
+ self.wte = nn.Embedding(config.vocab_size, config.hidden_size)
46
+ self.wpe = nn.Embedding(config.max_seq, config.hidden_size)
47
+ self.blocks = nn.ModuleList([DuchifatBlock(config) for _ in range(config.num_layers)])
48
+ self.ln_f = nn.LayerNorm(config.hidden_size)
49
+ self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
50
+
51
+ # Initialize weights
52
+ self.post_init()
53
+
54
+ def get_input_embeddings(self):
55
+ return self.wte
56
+
57
+ def set_input_embeddings(self, value):
58
+ self.wte = value
59
+
60
+ def forward(self, input_ids=None, attention_mask=None, labels=None, **kwargs):
61
+ # 讟讬驻讜诇 讘诪拽专讛 砖讘讜 input_ids 诇讗 谞砖诇讞 讻专讗讜讬
62
+ if input_ids is None:
63
+ raise ValueError("You must specify input_ids")
64
+
65
+ B, T = input_ids.size()
66
+ device = input_ids.device
67
+
68
+ # 讘谞讬讬转 驻讜讝讬爪讬讜转 (Absolute Positional Embeddings)
69
+ pos = torch.arange(0, T, dtype=torch.long, device=device)
70
+
71
+ x = self.wte(input_ids) + self.wpe(pos)
72
+
73
+ for block in self.blocks:
74
+ x = block(x)
75
+
76
+ logits = self.lm_head(self.ln_f(x))
77
+
78
+ loss = None
79
+ if labels is not None:
80
+ # Shift logits/labels 注讘讜专 Causal Language Modeling (讛讝讝讛 砖诇 1 讬诪讬谞讛)
81
+ shift_logits = logits[..., :-1, :].contiguous()
82
+ shift_labels = labels[..., 1:].contiguous()
83
+ loss = F.cross_entropy(shift_logits.view(-1, self.config.vocab_size), shift_labels.view(-1))
84
+
85
+ return CausalLMOutput(
86
+ loss=loss,
87
+ logits=logits
88
+ )
89
+
90
+ # 驻讜谞拽爪讬讛 讞讬讜谞讬转 砖诪讗驻砖专转 诇-generate 诇注讘讜讚
91
+ def prepare_inputs_for_generation(self, input_ids, attention_mask=None, **kwargs):
92
+ return {
93
+ "input_ids": input_ids,
94
+ "attention_mask": attention_mask
95
+ }
96
+
97
+ # 转诪讬讻讛 讘-Beam Search 讜讘讚讬拽讜转 拽讗砖 讘住讬住讬讜转
98
+ def _reorder_cache(self, past_key_values, beam_idx):
99
+ return past_key_values
tokenizer (8).json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config (14).json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "bos_token": "<s>",
4
+ "clean_up_tokenization_spaces": false,
5
+ "eos_token": "</s>",
6
+ "is_local": false,
7
+ "legacy": true,
8
+ "model_max_length": 1000000000000000019884624838656,
9
+ "pad_token": "</s>",
10
+ "sp_model_kwargs": {},
11
+ "spaces_between_special_tokens": false,
12
+ "tokenizer_class": "TokenizersBackend",
13
+ "unk_token": "<unk>",
14
+ "use_default_system_prompt": false
15
+ }