HachiML commited on
Commit
b888f8e
1 Parent(s): 1d5059e

End of training

Browse files
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - generated_from_trainer
4
+ model-index:
5
+ - name: myBit-Llama2-jp-127M-test-16
6
+ results: []
7
+ ---
8
+
9
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
10
+ should probably proofread and complete it, then remove this comment. -->
11
+
12
+ # myBit-Llama2-jp-127M-test-16
13
+
14
+ This model is a fine-tuned version of [](https://huggingface.co/) on an unknown dataset.
15
+ It achieves the following results on the evaluation set:
16
+ - Loss: 4.5029
17
+
18
+ ## Model description
19
+
20
+ More information needed
21
+
22
+ ## Intended uses & limitations
23
+
24
+ More information needed
25
+
26
+ ## Training and evaluation data
27
+
28
+ More information needed
29
+
30
+ ## Training procedure
31
+
32
+ ### Training hyperparameters
33
+
34
+ The following hyperparameters were used during training:
35
+ - learning_rate: 0.00024
36
+ - train_batch_size: 96
37
+ - eval_batch_size: 96
38
+ - seed: 42
39
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
40
+ - lr_scheduler_type: polynomial
41
+ - lr_scheduler_warmup_steps: 500
42
+ - num_epochs: 1
43
+
44
+ ### Training results
45
+
46
+ | Training Loss | Epoch | Step | Validation Loss |
47
+ |:-------------:|:-----:|:----:|:---------------:|
48
+ | 9.0668 | 0.07 | 200 | 7.8313 |
49
+ | 6.9502 | 0.15 | 400 | 6.3292 |
50
+ | 5.8696 | 0.22 | 600 | 5.4250 |
51
+ | 5.285 | 0.3 | 800 | 5.1157 |
52
+ | 5.0167 | 0.37 | 1000 | 4.9604 |
53
+ | 4.9441 | 0.45 | 1200 | 4.9913 |
54
+ | 4.8204 | 0.52 | 1400 | 4.7712 |
55
+ | 4.7314 | 0.6 | 1600 | 4.7058 |
56
+ | 4.6562 | 0.67 | 1800 | 4.6503 |
57
+ | 4.5941 | 0.74 | 2000 | 4.5901 |
58
+ | 4.5479 | 0.82 | 2200 | 4.5508 |
59
+ | 4.5155 | 0.89 | 2400 | 4.5194 |
60
+ | 4.4939 | 0.97 | 2600 | 4.5029 |
61
+
62
+
63
+ ### Framework versions
64
+
65
+ - Transformers 4.39.1
66
+ - Pytorch 2.2.1+cu121
67
+ - Datasets 2.18.0
68
+ - Tokenizers 0.15.2
generation_config.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 1,
4
+ "eos_token_id": 2,
5
+ "transformers_version": "4.39.1"
6
+ }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a418267732f701318275577ca358ff70e114727517671a25f4fd0ff702ff6b08
3
  size 511344824
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abd0c9aba878cb57e408548148acfef4a39dfc2605abbabe634b69eee716459c
3
  size 511344824
modeling_bit_llama.py ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Optional
2
+ from transformers.models.llama.modeling_llama import (
3
+ LlamaConfig,
4
+ LlamaModel,
5
+ LlamaForCausalLM,
6
+ LlamaAttention,
7
+ LlamaFlashAttention2,
8
+ LlamaSdpaAttention,
9
+ LlamaMLP,
10
+ LlamaDecoderLayer,
11
+ )
12
+ from mybitnet.bitnet import BitLinear
13
+ from torch import nn
14
+
15
+ class BitLlamaConfig(LlamaConfig):
16
+ model_type = "bit_llama"
17
+
18
+ def __init__(self, bits=8, **kwargs):
19
+ super().__init__(**kwargs)
20
+ self.bits = bits
21
+
22
+ class BitLlamaMLP(LlamaMLP):
23
+ def __init__(self, config):
24
+ super().__init__(config)
25
+ self.gate_proj = BitLinear(self.hidden_size, self.intermediate_size, bias=False, bits=config.bits, flg_before_linear=True)
26
+ self.up_proj = BitLinear(self.hidden_size, self.intermediate_size, bias=False, bits=config.bits, flg_before_linear=True)
27
+ self.down_proj = BitLinear(self.intermediate_size, self.hidden_size, bias=False, bits=config.bits, flg_before_linear=False)
28
+
29
+ class BitLlamaAttention(LlamaAttention):
30
+ def __init__(self, config: BitLlamaConfig, layer_idx: Optional[int] = None):
31
+ super().__init__(config)
32
+ self.q_proj = BitLinear(self.hidden_size, self.num_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
33
+ self.k_proj = BitLinear(self.hidden_size, self.num_key_value_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
34
+ self.v_proj = BitLinear(self.hidden_size, self.num_key_value_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
35
+ self.o_proj = BitLinear(self.hidden_size, self.hidden_size, bias=False, bits=config.bits, flg_before_linear=True)
36
+
37
+ class BitLlamaFlashAttention2(LlamaFlashAttention2):
38
+ def __init__(self, config: BitLlamaConfig, layer_idx: Optional[int] = None):
39
+ super().__init__(config, layer_idx)
40
+ self.q_proj = BitLinear(self.hidden_size, self.num_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
41
+ self.k_proj = BitLinear(self.hidden_size, self.num_key_value_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
42
+ self.v_proj = BitLinear(self.hidden_size, self.num_key_value_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
43
+ self.o_proj = BitLinear(self.hidden_size, self.hidden_size, bias=False, bits=config.bits, flg_before_linear=True)
44
+
45
+ class BitLlamaSdpaAttention(LlamaSdpaAttention):
46
+ def __init__(self, config: BitLlamaConfig, layer_idx: Optional[int] = None):
47
+ super().__init__(config, layer_idx)
48
+ self.q_proj = BitLinear(self.hidden_size, self.num_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
49
+ self.k_proj = BitLinear(self.hidden_size, self.num_key_value_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
50
+ self.v_proj = BitLinear(self.hidden_size, self.num_key_value_heads * self.head_dim, bias=False, bits=config.bits, flg_before_linear=True)
51
+ self.o_proj = BitLinear(self.hidden_size, self.hidden_size, bias=False, bits=config.bits, flg_before_linear=True)
52
+
53
+ BITLLAMA_ATTENTION_CLASSES = {
54
+ "eager": BitLlamaAttention,
55
+ "flash_attention_2": BitLlamaFlashAttention2,
56
+ "sdpa": BitLlamaSdpaAttention,
57
+ }
58
+
59
+ class BitLlamaDecoderLayer(LlamaDecoderLayer):
60
+ def __init__(self, config: BitLlamaConfig, layer_idx: int):
61
+ super().__init__(config, layer_idx)
62
+ self.self_attn = BITLLAMA_ATTENTION_CLASSES[config._attn_implementation](config=config, layer_idx=layer_idx)
63
+ self.mlp = BitLlamaMLP(config)
64
+
65
+ class BitLlamaModel(LlamaModel):
66
+ def __init__(self, config: BitLlamaConfig):
67
+ super().__init__(config)
68
+ self.layers = nn.ModuleList(
69
+ [BitLlamaDecoderLayer(config, layer_idx) for layer_idx in range(config.num_hidden_layers)]
70
+ )
71
+
72
+ class BitLlamaForCausalLM(LlamaForCausalLM):
73
+ config_class = BitLlamaConfig
74
+
75
+ def __init__(self, config: BitLlamaConfig):
76
+ super().__init__(config)
77
+ self.model = BitLlamaModel(config)
78
+ self.lm_head = BitLinear(config.hidden_size, config.vocab_size, bias=False, bits=config.bits, flg_before_linear=True)
79
+